lazyload オプションを true にして owlcarousel 2 を使用しています。ユーザーがカルーセルの最初の画像を見ている間にバックグラウンドで次のスライド画像のプリロードを開始したいので、ユーザーはローダーを表示せず、次のスライドで読み込まれた画像を直接見ることができます
ここに私のhtmlコードがあります
<div class="inner-gallery">
<div id="inner-gallery">
<div class="gallery-item">
<div class="gallery-item2">
<img class="lazyOwl" data-src="<?php echo $image[0]; ?>" alt=""/>
</div>
</div>
</div>
</div>
ここに私のJavaScriptコードがあります
$(document).ready(function(){
$("#inner-gallery").owlCarousel({
navigation : true, // Show next and prev buttons
autoPlay : false,
slideSpeed : 300,
lazyLoad:true,
paginationSpeed : 400,
singleItem:true,
autoHeight : true,
navigationText : ["", ""],
});
});