当悬停或单击双图像 div 的第二个图像时访问第一个图像

发布于 2024-10-02 06:42:54 字数 615 浏览 0 评论 0原文

我有一个包含两个图像的 div,其中包含悬停事件。这些图像是左箭头和右箭头。当我将鼠标悬停在右箭头上时,我需要更改左箭头的不透明度。 html 代码是:

<div class="arrows">
   <img src="left-arrow.jpg"  id="left" />
   <img src="right-arrow.jpg" id="right" />
</div>

jquery 代码

$('.arrows img').hover(function() {
    var imgId = $(this).attr('id');
    if (imgId == "right") {
        // change opacity on left arrow
        $(this).parent().img.eq(0).css({"opacity" : .5});  // does not work
        $('arrows img.eq(0)').css({"opacity" : .5});       // does not work
    }
});

我可以尝试的任何建议。

I have a div containing two images which is wrapped with a hover event. These images are left and right arrows. When I hover on the right arrow, I need to change the opacity on the left arrow. The html code is:

<div class="arrows">
   <img src="left-arrow.jpg"  id="left" />
   <img src="right-arrow.jpg" id="right" />
</div>

jquery code

$('.arrows img').hover(function() {
    var imgId = $(this).attr('id');
    if (imgId == "right") {
        // change opacity on left arrow
        $(this).parent().img.eq(0).css({"opacity" : .5});  // does not work
        $('arrows img.eq(0)').css({"opacity" : .5});       // does not work
    }
});

Any suggestion that I can try.

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

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

发布评论

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

评论(1

池予 2024-10-09 06:42:55

试试这个:

$('.arrows img').hover(function() {

    $(this).siblings().css({"opacity" : .5});

});

编辑:

如果您希望根据第一页或最后一页将左箭头或右箭头变灰,请执行以下操作:

悬停时:

  $('.arrows img').hover(function() {

    $(this).css({"opacity" : .5});

});

单击时:

  $('.arrows img').click(function() {

    $(this).css({"opacity" : .5});

});

Try this:

$('.arrows img').hover(function() {

    $(this).siblings().css({"opacity" : .5});

});

Edit:

If you are looking to gray out the left or right arrow based on first or last page do this:

On Hover:

  $('.arrows img').hover(function() {

    $(this).css({"opacity" : .5});

});

On Click:

  $('.arrows img').click(function() {

    $(this).css({"opacity" : .5});

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