如何在使用 fullpage.js 延迟加载图像时添加过渡
How to add transition while lazy loading images with fullpage.js
我在我的页面上使用 fullpage.js。我设置了 scrollbar:true,所以我想跟踪某些幻灯片上的滚动位置以使图像在显示时加载。如果有一种方法可以对具有滚动过渡效果的图像使用延迟加载?
fullPage.js提供延迟加载,check it out。
<img data-src="image.png">
<video>
<source data-src="video.webm" type="video/webm" />
<source data-src="video.mp4" type="video/mp4" />
</video>
我在我的页面上使用 fullpage.js。我设置了 scrollbar:true,所以我想跟踪某些幻灯片上的滚动位置以使图像在显示时加载。如果有一种方法可以对具有滚动过渡效果的图像使用延迟加载?
fullPage.js提供延迟加载,check it out。
<img data-src="image.png">
<video>
<source data-src="video.webm" type="video/webm" />
<source data-src="video.mp4" type="video/mp4" />
</video>