请大佬帮我看看这个写法的逻辑错误

来源:7-1 JS动画案例

半吊子渔者

2019-08-08 11:46

window.onload = function(){

var Icon = document.getElementById('icon');

var aList = Icon.getElementsByTagName('a');

for(var i=0;i<aList.length;i++)

{

var aI[i] = aList[i].getElementsByTagName('i')[0];

aI[i].onmouseover = function(){

//var _this = this.getElementsByTagName('i')[0];

startMove1(this,{top:-16,opacity:0},function(){

this.style.top = 20 +'px';

startMove1(this,{top:16,opacity:100});

});

}

}

}


写回答 关注

1回答

  • weixin_宝慕林7525097
    2019-12-30 21:53:19

    http://img2.mukewang.com/5e0a013600016cb205760279.jpg看看有啥不一样

JS动画效果

通过本课程JS动画的学习,从简单动画开始,逐步深入各种动画框架封装

113925 学习 · 1443 问题

查看课程

相似问题