用户交互完成后立即停止 jquery 动画

发布于 2024-12-09 19:04:35 字数 343 浏览 0 评论 0原文

我正在制作一个小型 slideUp/slideDown 动画(此处)。 就像,mouseenter -->向上滑动 & 鼠标离开 -->向下滑动。 它按预期工作。 但问题是,如果用户连续执行mouseenter/mouseleave,完成后,动画仍然会发生。

它看起来不酷。我尝试了 jquery、clearQueue() & stop() 函数。但没有用。

任何建议。

I am doing a small slideUp/slideDown animation(here).
Its like, mouseenter --> slideUP & mouseleave --> slideDown.
It works as expected.
But the problem is, if the user do mouseenter/mouseleave continuously, after he done with it, the animation is still happens.

Its not looks cool. I tried jquery, clearQueue() & stop() functions. But no use.

Any suggestions.

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

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

发布评论

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

评论(1

不可一世的女人 2024-12-16 19:04:35

不确定这是否是您使用 .stop() 的方式,但这似乎对我有用:

$("div").bind("mouseenter", function() {
        $("a").stop(true,true);
        $("a").animate({
            opacity: 1,
            height: 'toggle'
          }, 'fast', function() {
              $(this).css('display', 'block');
          });

    });
    $("div").bind("mouseleave", function() {
        $("a").stop(true,true);
        $("a").animate({
            opacity: 0,
            height: 'toggle'
          }, 'fast', function() {
              $(this).css('display', 'none');
          });

    });

Not sure if this is how you used .stop() but this seems to work for me:

$("div").bind("mouseenter", function() {
        $("a").stop(true,true);
        $("a").animate({
            opacity: 1,
            height: 'toggle'
          }, 'fast', function() {
              $(this).css('display', 'block');
          });

    });
    $("div").bind("mouseleave", function() {
        $("a").stop(true,true);
        $("a").animate({
            opacity: 0,
            height: 'toggle'
          }, 'fast', function() {
              $(this).css('display', 'none');
          });

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