JavaScript拖拽、碰撞、重力及彈性運動執行個體分析,javascript執行個體分析

來源:互聯網
上載者:User

JavaScript拖拽、碰撞、重力及彈性運動執行個體分析,javascript執行個體分析

本文執行個體講述了JavaScript拖拽、碰撞、重力及彈性運動實現方法。分享給大家供大家參考,具體如下:

js拖拽、碰撞與重力實現代碼:

window.onload=function (){ var oDiv=document.getElementById('div1'); var lastX=0; var lastY=0; oDiv.onmousedown=function (ev) { var oEvent=ev||event; var disX=oEvent.clientX-oDiv.offsetLeft; var disY=oEvent.clientY-oDiv.offsetTop; document.onmousemove=function (ev) {  var oEvent=ev||event;  var l=oEvent.clientX-disX;  var t=oEvent.clientY-disY;  oDiv.style.left=l+'px';  oDiv.style.top=t+'px';  iSpeedX=l-lastX;  iSpeedY=t-lastY;  lastX=l;  lastY=t;  document.title='x:'+iSpeedX+', y:'+iSpeedY; }; document.onmouseup=function () {  document.onmousemove=null;  document.onmouseup=null;  startMove(); }; clearInterval(timer); };};var timer=null;var iSpeedX=0;var iSpeedY=0;function startMove(){ clearInterval(timer); timer=setInterval(function (){ var oDiv=document.getElementById('div1'); iSpeedY+=3; var l=oDiv.offsetLeft+iSpeedX; var t=oDiv.offsetTop+iSpeedY; if(t>=document.documentElement.clientHeight-oDiv.offsetHeight) {  iSpeedY*=-0.8;  iSpeedX*=0.8;  t=document.documentElement.clientHeight-oDiv.offsetHeight; } else if(t<=0) {  iSpeedY*=-1;  iSpeedX*=0.8;  t=0; } if(l>=document.documentElement.clientWidth-oDiv.offsetWidth) {  iSpeedX*=-0.8;  l=document.documentElement.clientWidth-oDiv.offsetWidth; } else if(l<=0) {  iSpeedX*=-0.8;  l=0; } if(Math.abs(iSpeedX)<1) {  iSpeedX=0; } if(Math.abs(iSpeedY)<1) {  iSpeedY=0; } if(iSpeedX==0 && iSpeedY==0 && t==document.documentElement.clientHeight-oDiv.offsetHeight) {  clearInterval(timer);  alert('停止'); } else {  oDiv.style.left=l+'px';  oDiv.style.top=t+'px'; } document.title=iSpeedX; }, 30);}

js彈性運動實現代碼:

var left=0; //用left變數儲存賦給obj.style.left的值,以防每次系統都省略小數,所導致最後結果的細微差異var iSpeed=0;function startMove(obj,iTarget){ clearInterval(obj.timer); obj.timer=setInterval(function(){  iSpeed+=(iTarget-obj.offsetLeft)/5; //速度  iSpeed*=0.7; //考慮阻力  left+=iSpeed;  if(Math.abs(iSpeed)<1&&Math.abs(iTarget-obj.offsetLeft)<1) //停止條件 速度和距離絕對值小於1  {   clearInterval(obj.timer);   obj.style.left=iTarget+"px"; //清楚後,順便把目標值賦給obj.style.left  }   else  {   obj.style.left=left+"px";  } },30);}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.