Documentation
Webflow
Code
Setup: External Scripts
External Scripts in Webflow
Make sure to always put the External Scripts before the Javascript step of the resource.
In this video you learn where to put these in your Webflow project? Or how to include a paid GSAP Club plugin in your project?
HTML
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/gsap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/CustomEase.min.js"></script>
Step 1: Copy structure to Webflow
Copy structure to Webflow
In the video below we described how you can copy + paste the structure of this resource to your Webflow project.
Copy to Webflow
Webflow structure is not required for this resource.
Step 1: Add HTML
HTML
<button data-menu-button="burger" class="menu-button">
<div class="menu-button-line"></div>
<div class="menu-button-line"></div>
<div class="menu-button-line"></div>
</button>
HTML structure is not required for this resource.
Step 2: Add CSS
CSS
.menu-button {
grid-column-gap: .1875em;
grid-row-gap: .1875em;
flex-flow: column;
padding: 1em;
font-size: 1em;
display: flex;
background: transparent;
-webkit-appearance: none;
border: none;
}
.menu-button-line {
background-color: #e7dddb;
width: 2em;
height: .1875em;
}
Step 2: Add custom Javascript
Custom Javascript in Webflow
In this video, Ilja gives you some guidance about using JavaScript in Webflow:
Step 2: Add Javascript
Step 3: Add Javascript
Javascript
document.addEventListener("DOMContentLoaded", () =>{
gsap.registerPlugin(CustomEase)
CustomEase.create("button-ease", "0.5, 0.05, 0.05, 0.99")
initMenuButton()
})
function initMenuButton() {
// Select elements
const menuButton = document.querySelector("[data-menu-button]");
const lines = document.querySelectorAll(".menu-button-line");
const [line1, line2, line3] = lines;
// Define one global timeline
let menuButtonTl = gsap.timeline({
defaults:{
overwrite:"auto",
ease: "button-ease",
duration: 0.3
}
})
const menuOpen = () => {
menuButtonTl.clear() // Stop any previous tweens, if any
.to(line2, { scaleX: 0, opacity: 0 }) // Step 1: Hide middle line
.to(line1, { x: "-1.3em", opacity: 0 }, "<") // Step 1: Movetop line
.to(line3, { x: "1.3em", opacity: 0 }, "<") // Step 1: Move bottom line
.to([line1,line3],{opacity:0, duration: 0.1},"<+=0.2") // Step 2: Quickly fade top and bottom lines
.set(line1, { rotate: -135, y: "-1.3em", scaleX: 0.9 }) // Step 3: Instantly rotate and scale top line
.set(line3, { rotate: 135, y: "-1.4em", scaleX: 0.9 }, "<") // Step 3: Instantly rotate and scale bottom line
.to(line1, { opacity: 1, x: "0em", y: "0.5em"}) // Step 4: Move top line to final position
.to(line3, { opacity: 1, x: "0em", y: "-0.25em" }, "<+=0.1"); // Step 4: Move bottom line to final position
}
const menuClose = () => {
menuButtonTl.clear() // Stop any previous tweens, if any
.to([line1, line2, line3], { // Move all lines back in a different animation
scaleX: 1,
rotate: 0,
x: "0em",
y: "0em",
opacity: 1,
duration: 0.45,
overwrite: "auto",
})
}
// Toggle Animation
menuButton.addEventListener("click", () => {
const currentState = menuButton.getAttribute("data-menu-button");
if (currentState === "burger") {
menuOpen()
menuButton.setAttribute("data-menu-button", "close");
} else {
menuClose()
menuButton.setAttribute("data-menu-button", "burger");
}
});
}
Step 3: Add custom CSS
Step 2: Add custom CSS
Custom CSS in Webflow
Curious about where to put custom CSS in Webflow? Ilja explains it in the below video:
CSS