将鼠标悬停在绘图项上时更改鼠标光标
我想知道当鼠标悬停在绘图项上时更改鼠标光标的最佳方法是什么,以及当远离绘图项时将光标更改回默认值
plot.bind("plothover", function(event, pos, item) {
if(item) {
document.body.style.cursor = 'pointer';
} else {
document.body.style.cursor = 'pointer';
}
}
它在一开始有效,但是在平移绘图后不起作用...
I am wondering what is the best way to change mouse cursor when hovering on a plot item, and change cursor back to default one when away from plot item
plot.bind("plothover", function(event, pos, item) {
if(item) {
document.body.style.cursor = 'pointer';
} else {
document.body.style.cursor = 'pointer';
}
}
It works in the beginning, however, doesn't work after pan plot...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你们非常接近。您的第二个光标设置行不正确。这是一个更正后的版本:
You're very close. Your second cursor set line is incorrent. Here's a corrected version:
如果您定向到不同的页面,光标设置将保留为指针。相反,使用 flotcontainer 本身来设置光标样式。
If you direct to a different page the cursor setting is preserved as pointer. Instead use the flotcontainer itself to set the cursor style.