gpt4 book ai didi

javascript - jQuery 动画回调不起作用

转载 作者:行者123 更新时间:2023-11-28 20:26:53 25 4
gpt4 key购买 nike

我似乎无法让这个 jQuery 回调为我工作。有任何想法吗?顺便说一句,请不要担心变量,我有一个特殊的项目。

$("#" + circle - 1).animate({
opacity: 0,
"margin-top": "50",
height: '150px',
width: '150px'
}, 1000, function() {
$("#" + circle).animate({
opacity: 1,
"margin-top": "50",
height: '150px',
width: '150px'
}, 1000);
});

最佳答案

要么您在 $("#"+ Circle - 1) 中遇到问题,我不确定您要从中扣除 1 的内容,但我猜您的 id 是一个会失败的数字在计算过程中使用 NAN "#"+ Circle - 1 因此将其更改为 "#"+ (circle - 1) 并尝试:

$("#" + (circle - 1)).animate({ //<- here use () to seperate the number calculation otherwise it will be NAN.
opacity: 0,
"margin-top": "50",
height: '150px',
width: '150px'
}, 1000, function() {

$("#" + circle).animate({
opacity: 1,
"margin-top": "50",
height: '150px',
width: '150px'
}, 1000);
});

关于javascript - jQuery 动画回调不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17198768/

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