zoukankan      html  css  js  c++  java
  • 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=utf-8" />
    <title>无标题文档</title>
    <style>
    	div{ 100px; height:100px; background-color:red;  margin-top:20px;}
    </style>
    <script type="text/javascript">
    
    window.onload=function(){
    		var oDiv=document.getElementsByTagName('div');
    		//int i=0;
    		//for(i=0;i<oDiv.length;i++){
    				
    			//}
    		oDiv[0].onmouseover=function(){
    				StarMove(this,300,'width');
    			}
    		oDiv[0].onmouseout=function(){
    				StarMove(this,100,'width');
    			}	
    		oDiv[1].onmouseover=function(){
    				StarMove(this,150,'height');
    			}
    		oDiv[1].onmouseout=function(){
    				StarMove(this,100,'height');
    			}	
    	}
    //获取兼容的对应属性值 function getStyle(obj,attr){ if(obj.currentStyle){ return obj.currentStyle[attr]; } else{ return getComputedStyle(obj,false)[attr]; } } function StarMove(obj,iTarget,attr){ clearInterval(obj.timer);//清掉对应的 对象的定时器 obj.timer=setInterval(function(){ var iCur=parseInt(getStyle(obj,attr)); var iSpeed=(iTarget-iCur)/8; iSpeed=iSpeed>0?Math.ceil(iSpeed):Math.floor(iSpeed); if(iCur==iTarget){ clearInterval(obj.timer); } else{ obj.style[attr]=iCur+iSpeed+'px'; } },30); } </script> </head> <body> <div></div> <div></div> <div></div> <div></div> </body> </html>

      

  • 相关阅读:
    [BZOJ]1854: [Scoi2010]游戏
    [BZOJ]3531: [Sdoi2014]旅行
    2017-3-30校内训练
    Codeforces Round #407 (Div. 1)
    [BZOJ]1064: [Noi2008]假面舞会
    Educational Codeforces Round 18
    [BZOJ]1503: [NOI2004]郁闷的出纳员
    [BZOJ]1758: [Wc2010]重建计划
    2017-3-26四校联考
    [BZOJ]4644: 经典傻逼题
  • 原文地址:https://www.cnblogs.com/juexin/p/4058147.html
Copyright © 2011-2022 走看看