$('#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);
});
基本的に、左に 200px、下に 200px 移動したいのですが、左に 200px、下に 200px のページ コルデネードに移動されてしまい、
.css({'position','relative'});
代わりに、しかしその位置はアニメ化されません。
私は何が欠けていますか?私はオフセットでそれをしなければなりませんか?