本文实例讲述了JS实现匀加速与匀减速运动的方法。分享给大家供大家参考,具体如下:
函数
*
* */
var requestFrame=function(){
var prefixList=['webkit','moz','ms'];
var func;
for(var i=0;iSEOut(element,callback){
var time=+new Date;
var distance=Math.abs(to-from);
var a=2*distance/(duration*duration); //x=a*t^2/2 求出加速度
var v0=Math.sqrt(distance*2*a); // 根据公式:2as=v^2求出初速度
var func=function(){
var time2,durTime,pos;
time2=+new Date;
durTime=time2-time;
offsetDis=Math.ceil(v0*durTime-a*durTime*durTime/2); //根据s=v0*t+1/2*a*t^2求出位移x
if(durationto? from-offsetDis : from+offsetDis;
element.css('left',pos+'px');
requestFrame(func);
}
}
func();
}
更多关于JavaScript相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》及《》
希望本文所述对大家JavaScript程序设计有所帮助。
原文链接:https://www.f2er.com/js/36667.html