繁体   English   中英

如何将球固定在光标上?

[英]How do I attach this ball to the cursor?

我目前正在建立一个投资组合。 我受到fubiz studio的启发。 他们将这个非常酷的球附着在光标上。 我想知道是否有人可以解释他们是如何做到的,并且可以给我指导如何建造它。

Fubiz工作室: http//fubiz.studio/en/selected-projects

我想这就是你想要的

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

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

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

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开发工具。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM