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.
这是我的代码
this.animate({marginTop:'0px'}, {speed:'slow', queue:false});
速度选项在这里不起作用,我尝试了不同的组合,仍然不起作用。
这里发生了什么?
您正在寻找duration,而不是speed:
duration
speed
this.animate({marginTop:'0px'}, {duration:'slow', queue:false});