gpt4 book ai didi

javascript - 动画命令完成后调用命令

转载 作者:太空宇宙 更新时间:2023-11-03 21:40:05 25 4
gpt4 key购买 nike

我想知道动画功能完成后如何调出第二行?现在第二行在动画功能完成之前开始。

有人可以帮助我吗?

$(".intro").animate({height:'100%', width:'100%'}, 6000);
$(".intro").append("<div class='text'>Some Text</div>")
$(".text").css({"background":"#FFFF00" , "height":"23px","width":"300px","position":"absolute","top":"0","left":"0","bottom":"0","left":"0","margin":"auto"});

最佳答案

使用此代码片段 - 添加回调。

Complete Function :如果提供,则在动画完成后触发 complete 回调函数。

$(".intro").animate({height:'100%', width:'100%'}, 6000, function(){
$(this).append("<div class='text'>Some Text</div>");
});

引用这个 Link: .animate() 更多示例。

关于javascript - 动画命令完成后调用命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24161232/

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