이 기사의 예에서는 js를 사용하여 동일한 페이지에서 여러 모션 효과를 얻는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.
구현 원칙은 호출 시 루프 내에서 이 5개 요소에 이벤트를 추가하는 것입니다. 각 요소의 타이머는 분리되어야 합니다.
포인트 1:
var speed = (target - obj.offsetWidth)/8;
버퍼 모션 효과, 처음에는 매우 빠르다가 멈출 때까지 점점 느려집니다
speed = speed>0?Math.ceil(speed):Math.floor(speed);
속도가 0보다 크면 반올림하고, 속도가 0보다 작으면 내림합니다.
포인트 2:
if(obj.offsetWidth == target){ clearInterval(obj.timer); }else{ obj.style.width = obj.offsetWidth+speed+"px"; }
요소 너비를 대상 값과 비교합니다. 동일하면 타이머를 닫습니다. 그렇지 않으면 너비가 계속 증가합니다.
세 번째 사항:
for(i=0; i<runs_li.length; i++){ runs_li[i].timer = null; runs_li[i].onmouseover = function(){ startrun(this,300); } runs_li[i].onmouseout = function(){ startrun(this,80); } }
각 요소에 자체 타이머 속성과 마우스 이벤트를 추가하고 마우스 이벤트에서 모션 함수를 호출합니다.
마지막으로 다음 코드를 추가하세요.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <style> body,ul,li{margin:0; padding:0;} #runs li{width:80px; height:80px; background:#06c; list-style:none; position:absolute; left:0;} </style> <script> window.onload = function(){ var runs = document.getElementById("runs"); var runs_li = runs.getElementsByTagName("li"); var i=0; for(i=0; i<runs_li.length; i++){ runs_li[i].timer = null; runs_li[i].onmouseover = function(){ startrun(this,300); } runs_li[i].onmouseout = function(){ startrun(this,80); } } } function startrun(obj,target){ clearInterval(obj.timer); obj.timer = setInterval(function(){ var speed = (target - obj.offsetWidth)/8; speed = speed>0?Math.ceil(speed):Math.floor(speed); if(obj.offsetWidth == target){ clearInterval(obj.timer); }else{ obj.style.width = obj.offsetWidth+speed+"px"; } document.title = obj.offsetWidth + ',' + target; },30); } </script> </head> <body> <ul id="runs"> <li style="top:0">1</li> <li style="top:90px;">2</li> <li style="top:180px;">3</li> <li style="top:270px;">4</li> <li style="top:360px;">5</li> </ul> </body> </html>
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.