How to make elements jump out of containers in Webflow

Allison Chen
2 min readMay 27, 2024

--

This article will show you how to create a micro-animation that makes elements appear to jump out of their containers in Webflow.

My portfolio
Content
1. Create a div with overflow:hidden
2. Crate animation when page finishes loading

1. Create a div with overflow:hidden

Begin by creating a div element and assigning it a class. This div will serve as the container from which the object will emerge. I named the div “over hide” and you can name whatever you want.

In the head section of the custom code (inside <head> tag), apply the following CSS property to the class:

<style>

.over-hide {
overflow: hidden;
}

</style>

It means that any content outside the bounds of the div will be hidden.

2. Crate animation when page finishes loading

In the Interactions > Page trigger > Page load > When page finishes loading > Start an animation, create move alongside y-axid.

Now you can publish your Webflow and see whether it works!

If you have any questions, feel free to ask in the comments or DM me.

--

--