This effect, which I particularly love, features an infinitely scrolling list of elements that move automatically. On top of that, the user can drag to navigate through the items. When they do, the items undergo a slight random movement (just because why not). Let's break down all these steps!
HTML Structure
The structure of the effect is relatively simple. The images are contained within a container. You’ll notice that the list of items is duplicated to achieve this seamless infinite effect. We'll come back to this later.
<section class="mwg_effect008">
<div class="container">
<div class="card"><img src="./assets/medias/1.png" alt=""></div>
<div class="card"><img src="./assets/medias/2.png" alt=""></div>
<div class="card"><img src="./assets/medias/3.png" alt=""></div>
...
<!-- Duplicate for the infinite loop -->
<div class="card"><img src="./assets/medias/1.png" alt=""></div>
<div class="card"><img src="./assets/medias/2.png" alt=""></div>
<div class="card"><img src="./assets/medias/3.png" alt=""></div>
...
</div>
</section>