私は以下を持っています:
$(".transparentLoad").animate({
opacity : 1,
},100,function() {
$(".transparentLoad").each(function(){ alert("IE &");
$(this).css("filter" , " ");
});
});
また、
$(".transparentLoad").animate({
opacity : 1,
},function() {
$(".transparentLoad").each(function(){ alert("IE &");
$(this).css("filter" , " ");
});
});
また、
$(".transparentLoad").animate({
opacity : 1,
},{complete:function() {
$(".transparentLoad").each(function(){ alert("IE &");
$(this).css("filter" , " ");
});
}
});
しかし、それはすべて IE7 でエラーになります。私がする必要があるのは、アニメーションが完了した後、追加されたフィルター css スタイルを削除する必要があるということです。