将鼠标悬停在绘图项上时更改鼠标光标

发布于 2024-12-21 12:20:36 字数 364 浏览 1 评论 0原文

我想知道当鼠标悬停在绘图项上时更改鼠标光标的最佳方法是什么,以及当远离绘图项时将光标更改回默认值

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

兲鉂ぱ嘚淚 2024-12-28 12:20:36

你们非常接近。您的第二个光标设置行不正确。这是一个更正后的版本:

plot.bind("plothover", function(event, pos, item) {
    if(item) {
        document.body.style.cursor = 'pointer';
    } else {
        document.body.style.cursor = 'default';
    }
}

You're very close. Your second cursor set line is incorrent. Here's a corrected version:

plot.bind("plothover", function(event, pos, item) {
    if(item) {
        document.body.style.cursor = 'pointer';
    } else {
        document.body.style.cursor = 'default';
    }
}
独闯女儿国 2024-12-28 12:20:36

如果您定向到不同的页面,光标设置将保留为指针。相反,使用 flotcontainer 本身来设置光标样式。

$("#flotcontainer").bind("plothover", function(event, pos, item) {
  if(item)
    $("#flotcontainer").css("cursor","pointer","important");
  else
    $("#flotcontainer").css("cursor","default", "important");
});

If you direct to a different page the cursor setting is preserved as pointer. Instead use the flotcontainer itself to set the cursor style.

$("#flotcontainer").bind("plothover", function(event, pos, item) {
  if(item)
    $("#flotcontainer").css("cursor","pointer","important");
  else
    $("#flotcontainer").css("cursor","default", "important");
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文