是否可以仅使用CSS将“指针”的光标更改为自定义光标?
因此,如果我这样引用它:
button {
cursor: pointer;
}
html {
cursor: url("/static/images/paw-cursor.svg"), pointer;
}
pointer
将引用我的自定义光标。否则,它将使用浏览器的默认光标。
答案 0 :(得分:2)
是的,有可能。使用:
cursor: url(/static/images/paw-cursor.svg), auto;
https://css-tricks.com/almanac/properties/c/cursor/
JSFiddle:http://jsfiddle.net/1majnh04/