jQuery.animate - 动画非常非常快

发布于 2024-10-03 16:38:15 字数 323 浏览 4 评论 0原文

jQuery('.slide').css('opacity','1').animate({

            opacity: 0
        }, {
            duration: 9999,
            complete: function() {
                this.moveSlideAcross(); // animates a slide across the screen
            }
        });

我将持续时间设置为 9999,它的动画速度非常非常快。有什么想法如何减慢速度吗?

jQuery('.slide').css('opacity','1').animate({

            opacity: 0
        }, {
            duration: 9999,
            complete: function() {
                this.moveSlideAcross(); // animates a slide across the screen
            }
        });

I've set the duration for 9999 and it's animating really really fast. Any ideas how to slow it down?

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

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

发布评论

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

评论(2

笑忘罢 2024-10-10 16:38:15

取下第二组牙套。

jQuery('.slide').css('opacity','1').animate(
    {
        opacity: 0
    },
    9999,
    function() {
        this.moveSlideAcross(); // animates a slide across the screen
    }
);

编辑:我很抱歉,因为这不起作用。我不认为我理解 jquery 和我一样
应该。当我更好地理解时,我会进一步研究并修复这个答案。

edit2:实际上这确实有效:)干杯!

remove the second set of braces.

jQuery('.slide').css('opacity','1').animate(
    {
        opacity: 0
    },
    9999,
    function() {
        this.moveSlideAcross(); // animates a slide across the screen
    }
);

edit: my apologies as this does not work. i dont think i understand jquery as well as i
should. ill look into it more and fix this answer when i better understand.

edit2: actually this does work :) cheers!

新一帅帅 2024-10-10 16:38:15

我认为存在语法错误。试试这个:

$('.slide').css('opacity','1').animate(
  {
    opacity: 0,
    left: 0, //your left pos
    top: 0 // your top pos
  },
  9999,
  function() {
    //completion code
  }
);

在与不透明度相同的声明中使用顶部/左侧,以确保您不会离开动画的范围。

I think there is a syntax error. Try this:

$('.slide').css('opacity','1').animate(
  {
    opacity: 0,
    left: 0, //your left pos
    top: 0 // your top pos
  },
  9999,
  function() {
    //completion code
  }
);

Use top/left in the same declaration as where opacity is to make sure you're not leaving the scope of the animation.

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