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.
在我正在创建的游戏中,用户必须根据问题单击数字,我添加了一个冻结图标,该图标将计时器停止 3 秒。
我还希望这个冻结图标停止所有移动的 div 3 秒钟,然后恢复正常动画。
这个我试过了。。
$('#container').children().stop(3000);
但它不起作用。我哪里错了?
更好用.delay(3000)
.delay(3000)
$('#container').children().delay(3000);
查看文档:http ://api.jquery.com/delay/