gpt4 book ai didi

jquery - 帮助 jQuery 显示和延迟

转载 作者:行者123 更新时间:2023-12-01 07:00:30 25 4
gpt4 key购买 nike

本质上我希望文本淡入,延迟 3 秒,然后淡出。下面的代码立即淡入然后淡出,然后3秒内不会淡入。

$('#temp').fadeIn('slow', function () {
$('#temp').html(response);
}).fadeOut('slow').delay('3000');

最佳答案

您只需按正确的顺序链接它们即可:

$('#temp').fadeIn('slow', function () {
$('#temp').html(response);
}).delay(3000).fadeOut('slow');

关于jquery - 帮助 jQuery 显示和延迟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4330170/

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