Z-index悬停jquery问题

发布于 2024-12-20 14:54:59 字数 460 浏览 1 评论 0原文

我在幻灯片框上有一个透明的 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 技术交流群。

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

发布评论

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

评论(1

乱世争霸 2024-12-27 14:54:59

没有看到你的 HTML 布局很难说,但是你尝试过吗?

$('#trans_image').hover(function() {
        $('.slideshow').cycle('resume');
    },
    function() {
        $('.slideshow').cycle('pause');
    });

Hard to say without seeing your HTML layout, but have you tried this?

$('#trans_image').hover(function() {
        $('.slideshow').cycle('resume');
    },
    function() {
        $('.slideshow').cycle('pause');
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文