rcaferati / react-awesome-slider

React content transition slider. Awesome Slider is a 60fps, light weight, performant component that renders an animated set of production ready UI general purpose sliders with fullpage transition support for NextJS and GatsbyJS. 🖥️ 📱
https://fullpage.caferati.me
MIT License
2.92k stars 294 forks source link

Loading Bar disappears #187

Closed GodspeedChloe closed 3 years ago

GodspeedChloe commented 3 years ago

Loading bar disappears after you make it all the way to the end of the gallery and reset back to the first image. This can even be observed on the demo page here.

trolit commented 3 years ago

Hello @GodspeedChloe. The behavior you described works as intended cause it's "preloading" indicator. When you "ask" for the image first time, it's being "cached". Instead of showing you empty slider area until it's fully loaded, you see that bar that informs about next image first time processing status. The next time you ask for the same image you won't experience indicator cause there is no need to wait for image to be loaded since it can be retrieved instantly.

GodspeedChloe commented 3 years ago

Ah, I see. Thanks for clearing that up.