jQuery .hover 脚本

发布于 2025-01-08 13:34:59 字数 359 浏览 0 评论 0原文

我对 jQuery 还很陌生,这是我对这个 网站 的问题。

正如你所看到的,右边有一些小图片。我用 HOVER 编写了一个非常简单的脚本,以便在鼠标悬停时更改元素的不透明度。但是,直到我在 Firebug 中对该脚本进行了一些小的更改(例如,只需在脚本的任何行中按空格键,它就会变为活动状态)时,这才起作用。然后就可以了!我对此完全困惑。

如果有人可以帮助我,我可以使用另一个脚本来纠正相同的问题,该脚本会在您移动时更改这些小图片的位置。

我正在寻找任何可以完成我想要的事情的解决方案。

谢谢 现在再见了。

I am pretty new to jQuery and here is my problem with this website.

As you see, There is a some small pictures in the right. I wrote a very simple script with HOVER in order to change the opacity of the element when mouse over. But this doesn't work until I do a small change in that script in Firebug (e.g. just by press space in any line of script it becomes active). and then it works! I completely confused by this.

If anyone can help me through, I can correct the same problem with another script that change the position of those small pictures as you move over.

I am searching for any solution that can do the same thing as I want.

Thank you
and goodbye presently.

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

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

发布评论

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

评论(1

晨光如昨 2025-01-15 13:34:59

您需要将对 .hover() 的调用包装在 $(document).ready() 调用中,就像在其他一些脚本节点中一样,因为执行这些调用时图像尚未加载到页面中。例如,这个:

  $('.s1').hover(
  function () {
    $(this).stop().css('z-index','9998').animate({left:-40});
  },
  function () {
    $(this).stop().css('z-index','').animate({left:-80});
  }
);

应该是这样:

$(document).ready(function(){
  $('.s1').hover(
  function () {
    $(this).stop().css('z-index','9998').animate({left:-40});
  },
  function () {
    $(this).stop().css('z-index','').animate({left:-80});
  }
);
})

希望有帮助。

You need to wrap your calls to .hover() in $(document).ready() calls like you have in some of your other script nodes because the images are not loaded in the page yet when those calls are executed. For example, this:

  $('.s1').hover(
  function () {
    $(this).stop().css('z-index','9998').animate({left:-40});
  },
  function () {
    $(this).stop().css('z-index','').animate({left:-80});
  }
);

should be this:

$(document).ready(function(){
  $('.s1').hover(
  function () {
    $(this).stop().css('z-index','9998').animate({left:-40});
  },
  function () {
    $(this).stop().css('z-index','').animate({left:-80});
  }
);
})

Hope that helps.

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