为什么变化速度特别慢,而且没有直接下降到代码要求处,还是从上面下来,不是从下面升上去
var divMove = document.getElementById('move');
var divList = divMove.getElementsByTagName('div');
for(var i =0;i<divList.length;i++){
divList[i].onmouseover = function(){
var _this = this.getElementsByTagName('a')[0];
startMove(_this,{top:-20,opacity:100},function(){
_this.style.top=50+'px';
_this.style.top=50+'px';
startMove(_this,{top:0,opacity:100});
});
}
}