如何缓慢移动 DOM 元素?这不起作用
for ( var a = 0 ; a < 100 ; a++){
$('*').each(function(){
if ( ! /HTML/.test($(this).context.nodeName))
{
var top = parseInt($(this).css('top')) + 1;
$(this).css('top',top + "px");
}
});
}
循环结束时定位元素
我怎样才能慢慢做到这一点?
对不起我的英语不好