1. 動きフレームワークの実装アイデア
1. 均一な動き(属性値を一定の速度で変化させる)(左、右、幅、高さ、不透明度などを変更する)
2.属性値とその値の差に比例するターゲット)
4. 任意の属性値の変更
5.モーション (同じオブジェクトが一連の動きを完了します)
6 .複数のオブジェクトが同時に移動します
======================== ======================= =========
2. 単純運動と等速運動
以下の機能が基本的な枠組みですモーションシリーズ機能のこと。
//鼠标移到元素上元素右移,鼠标离开元素回去。 var timer=""; function Move(speed,locat) {//移动速度,移动终点位置 var ob=document.getElementById('box1'); clearInterval(timer);//先清除定时器,防止定时器的嵌套调用 timer=setInterval(function () { if (ob.offsetLeft==locat) {//当前位置到达指定终点,关闭定时器 clearInterval(timer); } else {//否则元素的left属性等于当前left加上每次改变的速度 ob.style.left=ob.offsetLeft+speed+'px'; } }, 30) }
以下の HTML ドキュメントで上記の JS 関数を呼び出します
<style type="text/css"> *{ margin: 0; padding: 0; } #box1{ width: 200px; height: 200px; background-color: red; position: absolute; left: 0; } </style>
<div id="box1"></div> <script type="text/javascript"> window.onload=function(){ var ob=document.getElementById('box1'); ob.onmouseover=function(){ Move(10,200);//鼠标移到div上时div从0移到200 } ob.onmouseout=function(){ Move(-10,0);//鼠标移走时div从200移到0 } } </script>
関数のモデルは基本的に前のセクションと同じですが、違いは要素には独自の透明度属性がないため、最初に透明度の初期値を定義する必要があります。
1 var timer=""; 2 var alpha=30;//透明度初始值 3 function changeOpacity(speed,target) { 4 var div1=document.getElementById('div1');//获取改变透明度的元素 5 clearInterval(timer);//清除定时器,避免嵌套调用 6 timer=setInterval(function () { 7 if (alpha==target) {//如果透明度达到目标值,清除定时器 8 clearInterval(timer); 9 } else {//当前透明度加上透明度变化的速度 10 alpha=alpha+speed; 11 div1.style.filter='alpha(opacity:'+alpha+')';//IE浏览器 12 div1.style.opacity=alpha/100; //火狐和谷歌 13 } 14 }, 30) 15 }
1 <style type="text/css"> 2 *{ 3 margin: 0; 4 padding: 0; 5 } 6 #div1{ 7 width: 200px; 8 height: 200px; 9 background: red; 10 filter: alpha(opacity:30);/*filter滤镜:不透明度,IE浏览器*/ 11 opacity: 0.3;/*火狐和谷歌*/ 12 } 13 </style>
1 <div id="div1"></div> 2 <script type="text/javascript"> 3 window.onload=function(){ 4 var div1=document.getElementById('div1'); 5 div1.onmouseover=function(){ 6 changeOpacity(10,100); 7 } 8 div1.onmouseout=function(){ 9 changeOpacity(-10,30); 10 } 11 }
上記は、JS アニメーション学習 (1) の内容です。その他の関連コンテンツについては、PHP 中国語 Web サイト (www) を参照してください。 .php.cn)!