jQueryにてbgswitcherを使い、背景画像を数枚フェードで切り替える実装をしたいのですが、
指定箇所に画像が表示されません。下記の通り、検証しましたが、画像は表示されませんでした。
大変お手数ですが、ご教示のほど、宜しくお願いします。
確認したことは以下の通りです。
- jQuery、bgswitcherの読み込みOK
- jQueryの記述OK
- jQuery内の画像のパスOK
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script> <script src="js/jquery.bgswitcher.js"></script> <script> jQuery(function($) { $('.top-image').bgSwitcher({ images: ['images/top_slide_01.jpg','images/top_slide_04.jpg'], interval: 3000, loop: true, shuffle: true, effect: "fade", // fade,blind,clip,slide,drop,hide duration: 500, easing: "swing" // linear,swing }); }); </script>
画像を表示させたい箇所のHTML
<div class="top-image"></div>
画像を表示させたい箇所のCSS
.top-image{ height:600px; background-position: center center; background-size: cover; background-repeat: no-repeat; }