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.
我想知道当你调用这样的东西时,是否有人知道jquery实际上会为某些东西设置动画多长时间:
.animate({ marginLeft: '-91px' }, 'slow');
比如,什么相当于'slow'?1000?1500?
'slow'
谢谢,我到处找,似乎找不到!
慢是 600 毫秒
快速为 200 毫秒
它可以在 http://api.jquery.com/animate/中找到
从animate() 的文档中:
期间:
持续时间以毫秒为单位;较高的值表示较慢的动画,而不是较快的动画。默认持续时间为 400 毫秒。可以提供字符串 'fast' 和 'slow' 分别表示 200 和 600 毫秒的持续时间。