
Documentation
Adlis Smart
Code
Setup: External Scripts
External Scripts in Adlis Smart
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 Adlis Smart 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 Adlis Smart
Copy structure to Adlis Smart
In the video below we described how you can copy + paste the structure of this resource to your Adlis Smart project.
Copy to Adlis Smart
Adlis Smart 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 Adlis Smart
In this video, Ilja gives you some guidance about using JavaScript in Adlis Smart:
Step 2: Add Javascript
Step 3: Add Javascript
Javascript
gsap.registerPlugin(CustomEase)
CustomEase.create("button-ease", "0.5, 0.05, 0.05, 0.99")
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");
}
});
}
// Initialize Burger Menu Button
document.addEventListener('DOMContentLoaded', () => {
initMenuButton();
});Step 3: Add custom CSS
Step 2: Add custom CSS
Custom CSS in Adlis Smart
Curious about where to put custom CSS in Adlis Smart? Ilja explains it in the below video:
CSS
















































































