In this effect, we will make a set of images scroll from left to right while playing an animation when they appear and disappear. This is perfect for showcasing travel photos, for example. The coffee cup is filled? Then let’s go!
HTML Structure
Our container will remain pinned on the screen while it moves from right to left to make the images appear.
<section class="mwg_effect033">
<div class="container">
<div class="medias">
<img src="./assets/medias/01.png" class="media" />
<img src="./assets/medias/02.png" class="media" />
<img src="./assets/medias/03.png" class="media" />
...
</div>
</div>
</section>