-
获取元素的left值,在元素没有边框的情况下用offsetLeft比较好,因为获取的值为数字,可以直接加减,如果用obj.style.left的话获取的结果为字符串,还要用parseInt()转换成整数。查看全部
-
JS动画效果: 运动框架实现思路: 1.速度(改变值left,right,width,height,opacity) 2.缓冲运动 3.多物体运动 4.任意值变化 5.链式运动 6.同时运动查看全部
-
多物体东西运动,所有东西都不能公用。查看全部
-
多物体运动,需要分别清除定时器查看全部
-
每一个元素都加一个timer,分别指定清除查看全部
-
透明度 变化 改变透明度查看全部
-
透明度查看全部
-
Math.floor向下取整 即3.4变3 Math.ceil想上取整 即3.4变4查看全部
-
JS动画效果: 2-1:速度动画: 为防止动画累加,在每次触发动画事件时,应该先清除前一个没有完成的动画,即清除钱一池开启的定时器,然后这次再开启一个定时器。 offsetLeft值可以获取当前的left值, 而offsetLeft属性不能被赋值,只能获取查看全部
-
6种运动方式!查看全部
-
filter:alpha(opacity:30); opacity:0.3查看全部
-
style.style.filter style.style.opacity查看全部
-
josn查看全部
-
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <style> body,div{ margin:0; padding:0; } #div1{ width:200px; height:200px; background:red; filter:alpha(opacity:30); opacity:0.3; } </style> <script> window.onload = function(){ var oDiv =document.getElementById('div1'); oDiv.onmouseover=function(){ startMove(100); } oDiv.onmouseout=function(){ startMove(30); } } var timer = null; var alpha = 30; function startMove(iTarget){ var oDiv =document.getElementById('div1'); clearInterval(timer); timer=setInterval(function(){ var speed = 0; if(alpha>iTarget){ speed = -10; } else{ speed = 10; } if(alpha == iTarget){ clearInterval(timer) } else{ alpha+=speed; oDiv.style.opacity = alpha/100 } },30) } </script> </head> <body> <div id="div1"></div> </body> </html>查看全部
-
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>速度动画</title> <style> body,div,span{ margin:0; padding:0; } #div1{ width:200px; height:200px; background:#F00; position:relative; left:-200px; } #share{ width:20px; height:50px; background:blue; position:absolute; left:200px; top:75px; } </style> <script> window.onload = function(){ var oDiv =document.getElementById('div1'); oDiv.onmouseover=function(){ startMove(10,0); } oDiv.onmouseout=function(){ startMove(-10,-200); } } var timer=null; function startMove(speed,iTarget){ clearInterval(timer); var oDiv=document.getElementById('div1'); timer=setInterval(function(){ if(oDiv.offsetLeft == iTarget){ clearInterval(timer); } else{ oDiv.style.left= oDiv.offsetLeft+speed+'px'; } },30) } </script> </head> <body> <div id="div1"><span id="share">分享</span></div> </body> </html>查看全部
举报
0/150
提交
取消