zoukankan      html  css  js  c++  java
  • JavaScript多物体运动一

    JavaScript多物体运动一

    html:

    <body>
      <div></div>
      <div></div>
      <div></div>
    </body>

    css:

     div{
         height:30px;
         width:50px;
         background:green;
         margin:10px;
     }

    javascript:

    //物体多了,就要考虑到我们的面向对象的方式来实现滴呀 
      window.onload=function (){
           var objs=document.getElementsByTagName('div');
           var len=objs.length;
           for(var i=0;i<len;i++){
              objs[i].Timer=null; //添加一个定时器的属性
              objs[i].onmouseover=function(){
                  moreMove(this,400);
              }
              objs[i].onmouseout=function (){
                  moreMove(this,50);
              }
           }
       }
       function moreMove(obj,iTarget){
           //一步步的接近面向对象编码方式了滴呀
          clearInterval(obj.Timer);
          obj.Timer=setInterval(function (){
               var speed=(iTarget-obj.offsetWidth)/8;
               speed=speed>0?Math.ceil(speed):Math.floor(speed);
               if(obj.offsetLeft==iTarget){
                 clearInterval(obj.Timer);
               }else{
                 obj.style.width=obj.offsetWidth+speed+'px';
                 
               }
          },30)
       }

    效果:

    这段效果,还是有一个bug的,是关于offsetWidth的,具体的请看, JavaScript中width和offsetWidth的区别(动画中)

    经过修复后的源代码:

     function getStyle(obj,name){
             if(obj.currentStyle!=undefined){
                return obj.currentStyle[name];
             }else{
                 return getComputedStyle(obj,false)[name];
             }
         }
       function moreMove(obj,iTarget){
           //一步步的接近面向对象编码方式了滴呀
          clearInterval(obj.Timer);
          obj.Timer=setInterval(function (){
              var width=parseInt(getStyle(obj,'width'));
               var speed=(iTarget-width)/8;
               speed=speed>0?Math.ceil(speed):Math.floor(speed);
               if(obj.offsetLeft==iTarget){
                 clearInterval(obj.Timer);
               }else{
                 obj.style.width=width+speed+'px';
                 
               }
          },30)
       }
  • 相关阅读:
    iOS内购开发(也许是最全的介绍)
    React Native 学习(三)之 FlexBox 布局
    React Native组件解析(二)之Text
    苹果开发者账号(个人、公司、企业)的区别
    React Native学习(二)之View
    搭建React Native开发环境
    iOS 提交AppStore不出现构建的版本
    Python使用Mysql过程中一些错误
    数据分析之漏斗模型
    项目管理之敏捷方式(我们的方式)
  • 原文地址:https://www.cnblogs.com/mc67/p/5195751.html
Copyright © 2011-2022 走看看