使用自定义光标作为“指针”

时间:2019-02-26 22:48:47

标签: css css3

是否可以仅使用CSS将“指针”的光标更改为自定义光标?

因此,如果我这样引用它:

button {
  cursor: pointer;
}

html {
  cursor: url("/static/images/paw-cursor.svg"), pointer;
}

pointer将引用我的自定义光标。否则,它将使用浏览器的默认光标。

1 个答案:

答案 0 :(得分:2)

是的,有可能。使用:

cursor: url(/static/images/paw-cursor.svg), auto;

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

JSFiddle:http://jsfiddle.net/1majnh04/