我希望能够在图像悬停时使用双箭头字符作为光标.我可以只将图像添加为自定义光标吗?
cursor: url(images/my-cursor.png), auto;
http://designerstoolbox.com/designresources/html/
这是一个内联SVG的解决方案:
您可以根据需要调整文本(字符)的高度和宽度.您可能还想更改不同字符的文本的y.
html {height:100%;}
body {width:100%;height:100%;margin: 0;
/* only this is relevant */
cursor: url('data:image/svg+xml;utf8,'), auto;
}