gpt4 book ai didi

javascript - jQuery:完成动画不起作用后执行

转载 作者:搜寻专家 更新时间:2023-11-01 04:58:39 26 4
gpt4 key购买 nike

$comment.animate({width: 0}, {queue:false, duration:450 }, function() { 
//$comment.css({ 'display': 'block' })
$comment.hide();
});

它不显示动画。我想我把函数放错地方了。

最佳答案

Per the docs ,如果您指定选项,请将回调包含在选项中,而不是单独包含:

$comment.animate({width: 0}, {
queue: false,
duration: 450,
complete: function() {
//$comment.css({ 'display': 'block' })
$comment.hide();
}
});

关于javascript - jQuery:完成动画不起作用后执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6007882/

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