为什么只有最后一个div有动画效果,而前几个没有????

<div class="test1" style="width:100px;height:100px;position:absolute;top:200px;left:300px;background:red;"></div>

<div class="test1" style="width:100px;height:100px;position:absolute;top:300px;left:300px;background:blue;"></div>

<div class="test1" style="width:100px;height:100px;position:absolute;top:400px;left:300px;background:green;"></div>


//JS

   $('.test1').hover(function(){

        $('.test1').anima({

     attr:'w',

 start:100,

 target:500,

 t:80,

 speed:5,

 tep:2,

})

   },function(){

          $('.test1').anima({

              attr:'w',

 target:100,

 t:80,

 speed:5,

 tep:2,

        })

});


会飞的猫web
浏览 1323回答 1
1回答

李晓健

你的 anima 是个什么方法呢,你是用了什么库还是自己写的个什么方法?
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript