如何使用 JQuery 更改光标的样式?
我想更改光标的样式,就像它经过链接一样。我该怎么做?
I want to change the style of the cursor as if it were going over a link. How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用
css()
方法修改 CSScursor
值演示:http://jsfiddle.net/jomanlk/H6Nta/
Modify the CSS
cursor
value by using thecss()
methodDemo : http://jsfiddle.net/jomanlk/H6Nta/
你可以用这个
指针
api
http://api.jquery.com/css/
you can play around with this
for pointer
api
http://api.jquery.com/css/
使用 css
http://www.echoecho.com/csscursors.htm
阅读此处了解不同的光标样式
并应用它
using css
http://www.echoecho.com/csscursors.htm
read here for different cursor styles
and apply it
游标由 CSS 处理。您需要类似
或 的旧版 IE 浏览器
Cursors are handled by CSS. You need something like
or for old IE browsers