gpt4 book ai didi

jQuery animate().delay().animate() 我这样做对吗?

转载 作者:行者123 更新时间:2023-12-01 06:56:40 27 4
gpt4 key购买 nike

您好,在 Firefox(相当糟糕)和 Chrome 之间获得可变性能和效果(还可以)有时这不会执行第一个动画,有时会卡住。

我的结构正确吗?

$notification.animate({
top: '-=' + ($notification.outerHeight() + 20)
}, 1500, function() {
$(this).delay(2000);
$(this).animate({
top: '+=' + ($notification.outerHeight() + 20)
}, 1500, function() {

});
});

最佳答案

试试这个

$notification.animate({
top: '-=' + ($notification.outerHeight() + 20)
}, 1500, function() {
$(this).delay(2000).animate({
top: '+=' + ($notification.outerHeight() + 20)
}, 1500, function() {

});
});

关于jQuery animate().delay().animate() 我这样做对吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8117065/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com