如何在将鼠标悬停在 div 上时保持显示某些内容? (jQuery)
我在使用 jQuery 时遇到了麻烦。请查看此页面。我创建了一个滑动图像查看器,当鼠标悬停在其上时,会显示一个带有“分页”类的 div。我遇到的问题是我希望将鼠标悬停在 div 上时也能显示它,但现在不显示。
这是使 div 出现的 javascipt:(我从此代码中删除了两行不相关的行)
$(".image_reel a").hover(
function() {
$(".paging").fadeIn('fast');
}, function() {
$(".paging").fadeOut('fast');
});
有什么想法吗?感谢您的帮助。
I'm having trouble with jQuery. Please have a look at this page. I've created a sliding image viewer which when hovered over shows a div with the class "paging". The problem I'm having is I want the div to be shown when hovering over it as well, as it now doesn't.
This is the javascipt which makes the div appear: (I removed two irrelevant lines from this code)
$(".image_reel a").hover(
function() {
$(".paging").fadeIn('fast');
}, function() {
$(".paging").fadeOut('fast');
});
Any ideas? Thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须清除动画队列以避免“闪烁”
http://api.jquery.com/clearQueue/< /a>
You have to clear the animation queue to avoid the "blinking"
http://api.jquery.com/clearQueue/
你可以尝试:
如果 .paging 位于 .image_reel 内,那应该可以工作
you could try:
that should work if the .paging is inside the .image_reel