如何使用jquery切换inlay控件?

发布于 2024-09-09 22:16:05 字数 1427 浏览 2 评论 0原文

我有一个形象。 如果将鼠标悬停在其上,则会出现下一个图像和上一个图像的控件,显示在图像上(通过 css 移动到那里)。如果我将鼠标移出控件的图像,外壳就会消失。

问题是,如果我将鼠标悬停在其中一个控件上,我将鼠标移出图像,控件就会消失:-(

我该如何处理?我尝试了类似的方法,但它没有解决问题: 变量控制=假;

    $('.detail_img').bind('mouseover', function(){
        $('.gal_control').fadeIn(200);
    });

    $('.detail_img').bind('mouseout', function(){

        if(!control) $('.gal_control').fadeOut(400);
    });
    $('.gal_control').bind('mouseover', function(){
       control = true;
    });
    $('.gal_control').bind('mouseout', function(){
       control = false;
    });

感谢您帮助我的

html ...对于所有没有幻想的人:-)

<div class="rollover_left gal_control"></div>
<div class="rollover_right gal_control"></div>
<img class="detail_img" id="detail_img" src...>

更新

var control = false;


    $('.detail_img').bind('mouseover', function(){
        control = true;
        $('.gal_control').fadeIn(200);

    });

    $('.detail_img').bind('mouseout', function(){
        control = false;
    });
    $('body').bind('mouseover', function(){
       if(!control)  $('.gal_control').fadeOut(400);
    });

    $('.gal_control').bind('mouseover', function(){
       control = true;
    });
    $('.gal_control').bind('mouseout', function(){
       control = false;
    });

我的意思是,这现在可以解决问题,但是有更好的方法吗?我可以优化这些线路吗?

i have an image.
if you mouseover it, the controls for next img and previous image appear, displayed on the image (moved there via css). if i mouseout the image the controls, shell disappear.

the problem is, if i mouseover one of the controls i mouseout the image and the controls disappear :-(

how can i handle that? i tryed something like that, but it doesn't do the trick:
var control = false;

    $('.detail_img').bind('mouseover', function(){
        $('.gal_control').fadeIn(200);
    });

    $('.detail_img').bind('mouseout', function(){

        if(!control) $('.gal_control').fadeOut(400);
    });
    $('.gal_control').bind('mouseover', function(){
       control = true;
    });
    $('.gal_control').bind('mouseout', function(){
       control = false;
    });

thanks for helping me

the html ... for all with no fantasy :-)

<div class="rollover_left gal_control"></div>
<div class="rollover_right gal_control"></div>
<img class="detail_img" id="detail_img" src...>

UPDATE

var control = false;


    $('.detail_img').bind('mouseover', function(){
        control = true;
        $('.gal_control').fadeIn(200);

    });

    $('.detail_img').bind('mouseout', function(){
        control = false;
    });
    $('body').bind('mouseover', function(){
       if(!control)  $('.gal_control').fadeOut(400);
    });

    $('.gal_control').bind('mouseover', function(){
       control = true;
    });
    $('.gal_control').bind('mouseout', function(){
       control = false;
    });

i mean, this does the trick now, but is there a better way? can i optimze those lines?

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

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

发布评论

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

评论(1

原来是傀儡 2024-09-16 22:16:05

我会尝试以下一项或两项操作:

  1. 将图像和控件都包装在
    中,并将鼠标事件附加到 div 而不是图像
  2. 尝试使用 mouseentermouseleave 事件而不是 mouseover/mouseout

I'd try one or both of the following:

  1. Wrap both the image and the controls in a <div>, and attach the mouse events to the div instead of the image
  2. Try using the mouseenter and mouseleave events instead of mouseover/mouseout
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文