jQuery 灯箱必须在鼠标悬停时弹出而不是单击
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以
在 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);