jQuery剪辑效果的默认时间是多少?

时间:2015-05-10 12:37:18

标签: jquery jquery-ui

简单的问题,但似乎无法通过Google搜索和其他地方找到答案。我检查了几个地方,例如:

jQuery UI API Documentation

jQuery site

TutorialsPoint

the source code itself

我无法找到默认时间。我假设它是400毫秒,因为调用animate()方法产生剪辑效果,animate()的默认时间是400毫秒。有谁知道这是否正确?谢谢!

1 个答案:

答案 0 :(得分:1)

答案已经在评论中,它的400ms。这是一种计算超时,间隔,动画,效果......的持续时间的方法:

var starting = new Date().getTime();
setTimeout(function () { //or any animation,effect,...
  var ending = new Date().getTime();
  alert(ending-starting); // ~500
}, 500);