js动画脚本编写原理 最简单的那种
用到了透明度 做的时候发现 透明度的调节 需要指定宽高,要不然透明度的数值就无效了。
<!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=gb2312" /> <title>无标题文档</title> <script language="javascript"> window.onload = function() { var k = document.getElementById("k"); k.onmouseover = function() { clearInterval(this.goObj); this.style.opacity=1; this.style.filter="alpha(opacity=100)"; }; k.onmouseout = function() { this.style.opacity=1; this.style.filter="alpha(opacity=100)"; this.iOpacity = 1; goMove(this); }; }; function goMove(obj) { obj.goObj = setInterval(function() { obj.iOpacity -= 0.01; obj.style.opacity=obj.iOpacity; obj.style.filter="alpha(opacity="+obj.iOpacity*100+")"; if(obj.iOpacity < 0) { clearInterval(obj.goObj); } } ,10); } </script> </head> <body> <div id="k" style="background-color:#333333; height:300px; width:700px;"></div> </body> </html>
---------------------------------------------
生活的意义就是你自己知道你要做什么,明确目标。没有目标,后面都是瞎扯!
https://pengchenggang.gitee.io/navigator/
SMART原则:
目标必须是具体的(Specific)
目标必须是可以衡量的(Measurable)
目标必须是可以达到的(Attainable)
目标必须和其他目标具有相关性(Relevant)
目标必须具有明确的截止期限(Time-based)
生活的意义就是你自己知道你要做什么,明确目标。没有目标,后面都是瞎扯!
https://pengchenggang.gitee.io/navigator/
SMART原则:
目标必须是具体的(Specific)
目标必须是可以衡量的(Measurable)
目标必须是可以达到的(Attainable)
目标必须和其他目标具有相关性(Relevant)
目标必须具有明确的截止期限(Time-based)