116Isometric Wave Gallery

In this effect, we'll scroll/drag through an infinite isometric gallery. A wave ripples through the stack as we move, and hovering pushes neighbouring tiles aside. Ready to see how it's done? Let's go!

HTML Structure

The structure is split in two parts. First, a container holds the visible tiles. Each one is a media wrapper with an empty image — we'll assign the sources in JavaScript:

<section class="mwg_effect116">
    <div class="container">
        <div class="media"><img src="" alt=""/></div>
        <div class="media"><img src="" alt=""/></div>
        <div class="media"><img src="" alt=""/></div>
        …
    </div>

Next, a medias-loader division lists every asset URL we need upfront. We'll read from it, but these images never appear on stage:

    <div class="medias-loader">
        <img src="./assets/medias/01.png" alt="">
        <img src="./assets/medias/02.png" alt="">
        <img src="./assets/medias/03.png" alt="">
        …
    </div>
</section>

Become a member to unlock
the full effect
today.

Join now Join now

Discover the platform

See how the platform works: try our free effects.

Try it now Try it now

(No registration or credit card needed)