jQuery 灯箱必须在鼠标悬停时弹出而不是单击

发布于 2025-01-07 17:46:18 字数 254 浏览 1 评论 0原文

我正在使用 jQuery lightbox 在我的网页中显示画廊,它工作正常,但是当鼠标悬停在它上面时我需要弹出图像吗?我尝试使用下面的代码,但它不起作用如何实现它?

<script type="text/javascript">
  jQuery(document).mouseover(function(){
    jQuery('#gallery a').lightBox();
  });
</script>

I am using jQuery lightbox for show a gallery in my webpage it works fine but is I need the images popup when the mouse over on it I tried using below code but it does not works how to achieve it?

<script type="text/javascript">
  jQuery(document).mouseover(function(){
    jQuery('#gallery a').lightBox();
  });
</script>

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

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

发布评论

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

评论(1

能怎样 2025-01-14 17:46:18

您可以

jquery.lightbox-0.x.js (0.x指灯箱版本)。如下更改此行

return this.unbind('mouseover').mouseover(_initialize);

You can see the javascript statement as return this.unbind('click').click(_initialize);

in jquery.lightbox-0.x.js (0.x means version of lightbox). Change this line as bellow

return this.unbind('mouseover').mouseover(_initialize);

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