Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
大家好,我有以下代码,我希望它持续一段时间,然后“.cta”应该回到原来的位置。有任何想法吗?
$('.cta').delay(1000).animate ({left: '5'}, 800)
谢谢
setTimeout(function(){ $('.cta').animate ({left: '5'}, 800,).delay(4000).animate ({left: '82'}; },1000);