$('#container img')
.clone()
.appendTo('#container')
.css({'position' : 'absolute','z-index':9999,marginLeft:-100})
.animate({opacity: 0.1, left: 200,top:200,height:420}, 1000, function() {
$(this).remove();
actualizar(iGal);
});
Basicalli 我想将它向左移动 200 像素,向底部移动 200 像素,但会发生什么情况是它被移动到左 200 像素和底部 200 像素的页面上,
.css({'position','relative'});
相反,但该位置没有动画化,
我错过了什么?我必须用偏移量来做吗?