那些微笑
2016-07-15 13:42
<script type="text/javascript">
window.onload = function(){
var oMove = document.getElementById("move");
var aLis = document.getElementsByTagName("a");
for(var i=0;i< aLis.length;i++){
aLis[i].onmouseover = function(){
var _this = this.getElementsByTagName("i")[0];
moreMove(_this,{top:-25,opacity:0},function(){
_this.style.top = 13 + "px";
moreMove(_this,{top:3,opacity:100});
});
}
}
}
</script>
//那得看你moreMove函数里有没有getStyle这个函数
JS动画效果
113923 学习 · 1443 问题
相似问题