Z-index悬停jquery问题
我在幻灯片框上有一个透明的 png,设置使用 z-index。我需要能够将鼠标悬停在顶部/透明图像上,并让底层幻灯片在悬停时开始和停止。我使用的脚本对于幻灯片放映效果很好,但我需要顶部透明 div 作为“触发器”。如何将此 div 添加到此脚本中?让我们为透明图像指定 ID“trans_image”。另外,如果您能链接到这方面的好教程,我将不胜感激!
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'fade',
speed: 1,
delay: 1,
speed: 1
}).cycle("pause").hover(function() {
$(this).cycle('resume');
},function(){
$(this).cycle('pause');
});
});
I have a transparent png over a slideshow box, settings use z-index. I need to be able to hover over the top/transparent image and have the underlying slideshow start and stop on hover-off. The script I'm using works well for the slideshow but I need the top transparent div to be the 'trigger'. How do I add this div to this script? Let's give the transparent image the ID of "trans_image." Also, if you can link to a good tutorial on this I would appreciate it!
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'fade',
speed: 1,
delay: 1,
speed: 1
}).cycle("pause").hover(function() {
$(this).cycle('resume');
},function(){
$(this).cycle('pause');
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有看到你的 HTML 布局很难说,但是你尝试过吗?
Hard to say without seeing your HTML layout, but have you tried this?