Instructions

Quick Start Guide: Get started editing your website with this easy-to-follow guide.

Support: Explore Webflow University's library for comprehensive video lessons on getting started.

- Getting Started with Webflow- Lesson library


Useful links from Webflow University:

- Style manager- Using Interactions


Before Publishing: Delete unused sections/pages, clean up CSS classes, clean up unused interactions and delete unused components.

Breakpoints: Check how your changes behave on different devices by clicking on the top bar of the viewport.

Backups: Restore previous versions from the Backups section in the left sidebar and clicking Settings in case of accidental deletions.

Editing Images and Text: Edit text by double-clicking on static content or use the CMS section for dynamic text. Replace images easily by clicking on them and choosing "Replace Image."

Dynamic Content (CMS): Learn how to manage and update dynamic content using the CMS, which instantly updates referenced content across pages.

Components: Utilize reusable components for efficient editing and consistency across layouts.

GSAP

You can find all the GSAP classes, GSAP connected Webflow variables and how to turn off GSAP here. This gives you powerful customization opitions to change this template in a major way.

GSAP Classes

All GSAP animations are controlled by classes. You can find all the classes in bold below.

Text Staggers

GSAP Stagger Fast: This class staggers text at a fast speed

GSAP Stagger Mid: This class staggers text at a medium speed

GSAP Stagger Slow: This class staggers text at a slow speed.

GSAP Stagger Center On Scroll: This class staggers text from the center on scroll

Div Staggers

GSAP Stagger Divs Fast: This class staggers the direct child div at a fast speed

GSAP Stagger Divs Mid: This class staggers the direct child div at a medium speed

GSAP Stagger Divs Slow: This class staggers the direct child div at a slow speed

Hero

Grid Left: Selects the left grid.

Grid Right: Selects the right grid.

Hero Image Wrapper: Wraps around a hero image.

Hero Image: Selects the hero images.

Hero Full Image: This is the full screen hero image.

GSAP Stagger Loop: This class staggers the hero text. First with an intro stagger and secord with a stagger loop.

Works

Work Wrapper: The wrapper for every work.

Work Image Wrapper: Wraps around a work image.

Work Image: Selects the work images.

Call To Action (CTA)

CTA Grid: Selects the main CTA grid

CTA Grid Image: Selects the CTA images.

CTA Grid Overlay: The CTA overlay to add a darker backdrop when the title enters.

CTA Title: The CTA title.

Button with Circle Icon: The CTA button.

GSAP Variables

There are Webflow variables for most of the GSAP settings. You can customize this template without ever looking at a single line of code.

Text & Div Stagger Speed

gsap instructions

Text & Div Stagger Inital Start Settings

This sets the inital settings for the text & div staggers.
In the case of the text staggers - each character of a paragraph will start at 32px below (Y Position), 16px of blur and 0 opacity.

gsap instructions

Offset Trigger Settings

This sets when the text & div staggers are triggered from the top.

gsap instructions

Hero Settings

This sets the duration of the fade in and fade out of the full size hero images.

gsap instructions

Variables to set the hero images scroll behavior. There is Images Scroll From & Images Scroll To.
"From" is bottom part of the screen and "To" is the top part of the screen.

gsap instructionsgsap instructions

This is the total stagger time for the hero's intro title.

gsap instructions

The start settings for the hero's intro title. It staggers from 100% below with a 16px blur from 0 opacity.

gsap instructions

This is the hero's title stagger loop that starts after hero's intro title ends. The total stagger time is 0.5 with a delay or pause of 1 between each stagger.

gsap instructions

Works Settings

This is the works start settings at the beginning of the scroll.

gsap instructions

This is around the mid point of the scroll.

gsap instructions

The final end point settings.

gsap instructions

The default works uses a clip path for a 3D effect. You can turn this on or off by selecting either the "Yes" or "No" variable.

gsap instructions

Call To Action (CTA) Settings

The CTA images' start settings. You can turn the "random" stagger on or off by selecting either the "Yes" or "No" variable. When set to off the stagger will be from the 1st image.

gsap instructions

The CTA text's start settings. You can turn the "random" stagger on or off by selecting either the "Yes" or "No" variable. When set to off the stagger will be from the 1st letter.

gsap instructions

The CTA overlay's start settings.

gsap instructions

The CTA button's start settings.

gsap instructions

ON or oFF Settings

Any part of GSAP can be turned on or off by selecting either the "Yes" or "No" variable for the base mode. All elements will start at their original settings without any movement if turned off. The template will work perfectly without GSAP activated.

on or off instructions

Lenis Smooth Scrolling

This provides smooth scrolling across the entire template. To turn off just comment out this code.

// Initialize Lenis smooth scroll
const lenis = new Lenis({
    duration: 1.2,
    easing: (t) => Math.min(1, 1.001 - Math.pow(2, -10 * t)),
    smooth: true
    });
    
    // Connect Lenis to GSAP ScrollTrigger
    lenis.on('scroll', ScrollTrigger.update);
    
    gsap.ticker.add((time) => {
    lenis.raf(time * 1000);
});
    
gsap.ticker.lagSmoothing(0);

});