如何将此球连接到光标?



我目前正在构建一个作品集。我的灵感来自fubiz工作室。他们把这个非常酷的球连接到他们的光标上。我想知道是否有人可以解释他们是如何做到这一点的,并且可以给我如何构建它的指南。

富比兹工作室: http://fubiz.studio/en/selected-projects

尝试将其添加到您的样式表中:

cursor: url("images/cursor.png"), pointer;

正如其他人所说,通过CSS执行此操作的最佳形式是使用这样的类cursor

.class{
cursor: url(images-folder/cursor-image.png), auto;
}

另一方面,假设你有很多CSS类可以用来修改和"玩"光标:

.alias {cursor: alias;}
.all-scroll {cursor: all-scroll;}
.auto {cursor: auto;}
.cell {cursor: cell;}
.context-menu {cursor: context-menu;}
.col-resize {cursor: col-resize;}
.copy {cursor: copy;}
.crosshair {cursor: crosshair;}
.default {cursor: default;}
.e-resize {cursor: e-resize;}
.ew-resize {cursor: ew-resize;}
.grab {cursor: grab;}
.grabbing {cursor: grabbing;}
.help {cursor: help;}
.move {cursor: move;}
.n-resize {cursor: n-resize;}
.ne-resize {cursor: ne-resize;}
.nesw-resize {cursor: nesw-resize;}
.ns-resize {cursor: ns-resize;}
.nw-resize {cursor: nw-resize;}
.nwse-resize {cursor: nwse-resize;}
.no-drop {cursor: no-drop;}
.none {cursor: none;}
.not-allowed {cursor: not-allowed;}
.pointer {cursor: pointer;}
.progress {cursor: progress;}
.row-resize {cursor: row-resize;}
.s-resize {cursor: s-resize;}
.se-resize {cursor: se-resize;}
.sw-resize {cursor: sw-resize;}
.text {cursor: text;}
.url {cursor: url(myBall.cur),auto;}
.w-resize {cursor: w-resize;}
.wait {cursor: wait;}
.zoom-in {cursor: zoom-in;}
.zoom-out {cursor: zoom-out;}

拖动背景的部分是关于使用背景图像和css/js,最后是关于混合所有Web开发工具。

我想这就是你想要的

.custom {
cursor: url(images/my-cursor.png), auto;
}

https://css-tricks.com/almanac/properties/c/cursor/

最新更新