1

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 );
});
4

1 に答える 1

0

プラグインのソースによると、2 番目の引数はコールバックであり、最初の 1 つのセンタリング メソッドです。だから試してみてください

var $img =$('#myimage');
$img.css('opacity', 0);

$img.centerImage('inside', function () { //give inside or for no method just provide undefined or ""
      //At this point, resize is complete, and the element is invisible
    $(this).animate({
        opacity: 1
    }, 1500);
});

デモ

デモ2

また、デモのように em を連鎖できることも覚えておいてください。

于 2013-10-24T01:40:57.577 に答える