jQuery Image Center プラグインを使用しており、画像を中央に配置した後にアニメーション化しようとしています
これが私のコードです。画像のセンタリングは機能しますが、アニメーションは機能しません
$('#myimage').css('opacity' , 0);
$('#myimage').centerImage(function() {
//At this point, resize is complete, and the element is invisible
$(this).animate({opacity: 1}, 1500 );
});