admin管理员组文章数量:1404923
I would like to change the cursor
property to imply that the user needs to double click.
Are there any additional icons besides the default one's that can be applied? I saw a list here:
W3Schools
But I need the cursor
to look like a pointer
with two fingers, or some other icon which is better representation for double click.
I would like to change the cursor
property to imply that the user needs to double click.
Are there any additional icons besides the default one's that can be applied? I saw a list here:
W3Schools
But I need the cursor
to look like a pointer
with two fingers, or some other icon which is better representation for double click.
1 Answer
Reset to default 5You can basically use any image you want.
Use cursor: url(your-image-path.png), auto;
div {
cursor: url(http://65.media.tumblr./avatar_91989eab746d_96.png), auto;
}
<div>
Winter is ing
</div>
Original fiddle: JSFiddle
For IE support you will need to use .cur format
本文标签: javascriptChange cursor pointer to a custom iconStack Overflow
版权声明:本文标题:javascript - Change cursor pointer to a custom icon - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744876787a2629961.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论