1. ホーム
  2. jquery

[解決済み] jQueryで関数呼び出しを繰り返す方法

2022-02-07 17:29:50

質問

次のようなコードがあります。

<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
<script type="text/javascript">
    $(document).ready(function() { 
        function loop(){
            $('#picOne').fadeIn(0).fadeOut(8000);
            $('#picTwo').delay(2000).fadeIn(6000).fadeOut(5000);
            $('#picTree').delay(10000).fadeIn(2000).fadeOut(16000);
            $('#picFour').delay(12000).fadeIn(16000).fadeOut(5000);
        }
        loop();
    });
</script>

しかし、最後の写真がフェードアウトするとき、コードは繰り返されません。何が問題なのでしょうか?

解決方法は?

各要素のアニメーションの時間を同じにしたい場合を想定しています。

var $elements = $('#picOne, #picTwo, #picTree, #picFour');

function anim_loop(index) {
    // Get the element with that index and do the animation
    $elements.eq(index).fadeIn(1000).delay(3000).fadeOut(1000, function() { 
        // Kind of recursive call, increasing the index and keeping in the
        // the range of valid indexes
        anim_loop((index + 1) % $elements.length);
    });
}

anim_loop(0); // start with the first element

アニメーションがどうあるべきか、正確にはわかりませんが、コンセプトはご理解いただけたかと思います。

更新しました。 一定時間後に画像のフェードアウトとインを同時に行いたい場合は setTimeout を呼び出し fadeOutanim_loop をコールバックに追加します。

$elements.eq(index).fadeIn(1000, function() {
    var $self = $(this);
    setTimeout(function() {
        $self.fadeOut(1000);
        anim_loop((index + 1) % $elements.length);
    }, 3000);
});

DEMO