最も短いコードで実装出来るイメージスライドショー

Ads

Result

jQuery

//最初の画像以外を非表示にする
$('.in img:gt(0)').hide();
//タイマー
setInterval(function() {
     //フェードインとアウトを繰り返す
    $('.in :first-child').fadeOut().next('img').fadeIn().end().appendTo('.in');
}, 4500);

css

.in { position:relative; width:500px;  }
.in img { position:absolute; left:0; top:0; }

html

<div class="in">
  <img src="01.jpg">
  <img src="02.jpg">
  <img src="03.jpg">
</div>

Warning: include(/home/youhei0828/kachibito.net/public_html/wp-content/themes/cocoon-master/my-php/jquery-other-snippets.php): Failed to open stream: No such file or directory in /home/youhei0828/kachibito.net/public_html/wp-content/themes/kachibito7_with_cocoon_child/functions-module/shortcode/add-post-myphp.php on line 7

Warning: include(): Failed opening '/home/youhei0828/kachibito.net/public_html/wp-content/themes/cocoon-master/my-php/jquery-other-snippets.php' for inclusion (include_path='.:/opt/php-8.1.29/data/pear') in /home/youhei0828/kachibito.net/public_html/wp-content/themes/kachibito7_with_cocoon_child/functions-module/shortcode/add-post-myphp.php on line 7