2013年11月18日

簡単なフェードイン&アウトローテータ / Simple jQuery Fade In / Out Continuous Rotator

jQuery(function() {
    jQuery('.rotate div').hide();
    jQuery('.rotate div:first').show();
    setInterval(function() {
        jQuery('.rotate div:first-child').fadeOut().hide().next('div').fadeIn().end().appendTo('.rotate');
    }, 10000);
});