ZeroClipboard.js onhover 光标指针问题

发布于 2024-11-15 07:49:18 字数 152 浏览 3 评论 0原文

我正在使用 ZeroClipboard.js。光标指针(悬停效果)在页面加载时不会到达复制链接,它仅显示光标箭头,只有当您在页面上的某处进行交互并再次转到链接时,您才会看到指针。任何人看到这个问题,都有一个解决方案来修复它以在加载本身上显示指针。

I am using ZeroClipboard.js. The cursor pointer (hover effect) doesn't come to the copy link at the page load it shows only cursor arrow, only if you interact on page somewhere and go to link again then you see the pointer. Anybody seen this issue, has a solution for fixing it to show pointer on load itself.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

长梦不多时 2024-11-22 07:49:18

有了这个CSS:

 .zeroclipboard-is-hover { cursor:pointer; }

With this css:

 .zeroclipboard-is-hover { cursor:pointer; }
一笔一画续写前缘 2024-11-22 07:49:18

你没说你的设置是什么。
尝试使用:

 var clip = new ZeroClipboard($("#your-copy-button-id"));
 clip.setHandCursor(true);

或使用CSS:

#your-copy-button-id {
    cursor: pointer;
}

You didn't say what your setup is.
Try with:

 var clip = new ZeroClipboard($("#your-copy-button-id"));
 clip.setHandCursor(true);

or use css:

#your-copy-button-id {
    cursor: pointer;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文