function doAnimation(element, stuff){
setTimeout(animate(element, stuff), 1000);
}
function animate(element, stuff) {
}
我的问题有一个简单的解决方案吗?我到处寻找但找不到我要找的东西。
答案 0 :(得分:2)
试试这个,
function doAnimation(element, stuff){
setTimeout(function () { animate(element, stuff) }, 1000);
}
function animate(element, stuff) {
}