Codrops 원본
Expanding Rounded Menu Animation
탐색 · MIT
갤러리 안에서는 화면을 벗어나거나 움직임을 멈추면 예제도 닫힙니다. 다시 재생할 때는 처음부터 시작해요.
SOURCE FILES
원본 코드 읽기
수집한 원본 소스와 실행 안내를 함께 제공합니다.
src/css/base.css
*,
*::after,
*::before {
box-sizing: border-box;
}
:root {
font-size: 17px;
}
body {
margin: 0;
--color-text: #fff;
--color-text-menu: #000;
--color-text-frame: #817f7f;
--color-bg: #0c0c0c;
--color-bg-menu: #ee8233;
--color-link: #fff;
--color-link-hover: #fff;
--color-link-menu: #000;
--color-link-social: #ca5d2b;
--border-radius: 2rem;
--menu-padding: 1rem;
--color-text-title: #ee8233;
color: var(--color-text);
background-color: var(--color-bg);
font-family: acumin-pro, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body #cdawrap {
margin-left: auto;
}
/* Page Loader */
.js .loading::before,
.js .loading::after {
content: '';
position: fixed;
z-index: 1000;
}
.js .loading::before {
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--color-bg);
}
.js .loading::after {
top: 50%;
left: 50%;
width: 60px;
height: 60px;
margin: -30px 0 0 -30px;
border-radius: 50%;
opacity: 0.4;
background: var(--color-link);
animation: loaderAnim 0.7s linear infinite alternate forwards;
}
@keyframes loaderAnim {
to {
opacity: 1;
transform: scale3d(0.5,0.5,1);
}
}
a {
text-decoration: none;
color: var(--color-link);
outline: none;
}
a:hover {
color: var(--color-link-hover);
outline: none;
}
/* Better focus styles from https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:focus {
/* Provide a fallback style for browsers
that don't support :focus-visible */
outline: none;
background: lightgrey;
}
a:focus:not(:focus-visible) {
/* Remove the focus indicator on mouse-focus for browsers
that do support :focus-visible */
background: transparent;
}
a:focus-visible {
/* Draw a very noticeable focus style for
keyboard-focus on browsers that do support
:focus-visible */
outline: 2px solid red;
background: transparent;
outline-offset: -2px;
}
.hover-line {
white-space: nowrap;
overflow: hidden;
position: relative;
display: inline-block;
}
.hover-line::before {
content: '';
height: 1px;
width: 100%;
background: currentColor;
position: absolute;
top: 92%;
transition: transform 0.3s;
transform-origin: 0% 50%;
}
.hover-line:hover::before {
transform: scaleX(0);
transform-origin: 100% 50%;
}
.unbutton {
background: none;
border: 0;
padding: 0;
margin: 0;
font: inherit;
cursor: pointer;
}
.unbutton:focus {
outline: none;
}
main {
display: grid;
width: 100%;
height: 100vh;
overflow: hidden;
}
.frame {
padding: 0.5rem 5vw;
position: fixed;
text-transform: uppercase;
font-size: 0.75rem;
color: var(--color-text-frame);
bottom: 0;
z-index: 50;
width: 100%;
}
.frame__title {
font-size: inherit;
margin: 0 0 1rem;
font-weight: normal;
}
.frame__title em {
font-weight: 400;
color: var(--color-bg-menu);
}
.frame__links {
display: inline-block;
}
.frame__links a:not(:last-child) {
margin-right: 1rem;
}
.content {
grid-area: 1 / 1 / 2 / 2;
width: 100%;
height: 100vh;
overflow: hidden;
display: grid;
grid-template-rows: 10vh 15vh auto 1fr auto 1fr;
grid-template-columns: 18% 1fr 1fr 18%;
grid-column-gap: 7vw;
grid-template-areas:
'... img-main img-main ...'
'... img-main img-main ...'
'img-left img-main img-main title-right'
'img-left img-main img-main img-right'
'title-left img-main img-main img-right'
'title-left img-main img-main img-right';
}
.content__img {
position: relative;
background-size: cover;
background-position: 50% 20%;
will-change: transform;
}
.content__img--left {
grid-area: img-left;
}
.content__img--main {
grid-area: img-main;
}
.content__title {
z-index: 10;
position: relative;
font-family: kudryashev-d-excontrast-sans, sans-serif;
font-weight: 300;
color: var(--color-text-title);
margin: 0;
line-height: 1;
will-change: transform;
}
.content__title--left {
grid-area: title-left;
font-size: 4vw;
justify-self: end;
margin-top: 2rem;
}
.content__title--main {
grid-area: img-main;
display: grid;
padding: 20vh 0 10vh;
grid-template-rows: repeat(4,17vh);
grid-template-areas:
'letter-1 ...'
'... letter-3'
'letter-2 ...'
'... letter-4';
font-size: 20vh;
align-content: center;
justify-items: center;
line-height: 1;
}
.content__title--main span {
display: block;
}
.content__title--main span:first-child {
grid-area: letter-1;
}
.content__title--main span:nth-child(2) {
grid-area: letter-2;
}
.content__title--main span:nth-child(3) {
grid-area: letter-3;
}
.content__title--main span:nth-child(4) {
grid-area: letter-4;
}
.content__img--right {
grid-area: img-right;
}
.content__title--right {
grid-area: title-right;
font-size: 6.5vw;
}
.content__description {
z-index: 10;
text-transform: uppercase;
grid-area: 2 / 3 / 3 / 5;
max-width: 400px;
align-self: center;
justify-self: center;
line-height: 1;
font-style: italic;
}
.cover-wrap {
display: grid;
pointer-events: none;
grid-area: 1 / 1 / 2 / 2;
z-index: 100;
}
.cover {
display: grid;
grid-area: 1 / 1 / 2 / 2;
transform: translateY(-100%);
overflow: hidden;
}
.cover__inner {
background-size: cover;
transform: translateY(100%);
background-position: 50% 50%;
}
.cover-wrap, .cover, .cover__inner {
will-change: transform;
}
.menu {
position: absolute;
top: 1rem;
left: 1rem;
right: 1rem;
bottom: 1rem;
z-index: 100;
color: var(--color-text-menu);
display: grid;
grid-template-rows: 3rem 1fr;
grid-template-areas: 'top' 'content';
pointer-events: none;
opacity: 0.9;
}
.menu--open {
pointer-events: auto;
}
.menu__top {
pointer-events: auto;
z-index: 100;
padding: 0 var(--menu-padding);
grid-area: top;
display: grid;
align-items: center;
grid-template-columns: auto 1fr auto;
grid-template-areas: 'title nav search';
justify-content: space-between;
background: var(--color-bg-menu);
border-radius: var(--border-radius);
}
.menu__content-wrap {
position: relative;
grid-area: content;
overflow: hidden;
margin-top: -1.35rem;
}
.menu__content {
overflow: hidden;
transform: translateY(-100%);
padding: 0 var(--menu-padding);
height: 100%;
display: grid;
justify-content: space-between;
background: var(--color-bg-menu);
border-radius: 0 0 var(--border-radius) var(--border-radius);
grid-template-rows: 1fr auto;
grid-template-columns: auto 1fr auto;
grid-template-areas:
'links links back'
'tagline tagline tagline';
padding-bottom: 1rem;
will-change: transform;
}
.menu__back {
position: relative;
grid-area: back;
height: 90px;
align-self: start;
margin-top: calc(5.5vh + 2rem);
}
.menu__back svg {
display: block;
fill: #000;
height: 100%;
max-height: 201px;
transition: transform 0.3s;
}
.menu__back:hover svg,
.menu__back:focus svg {
transform: translateY(-10px);
}
.menu__title {
grid-area: title;
font-family: kudryashev-d-excontrast-sans, sans-serif;
font-weight: 300;
margin: 0;
align-self: center;
justify-self: start;
text-transform: uppercase;
font-size: 1.65rem;
position: relative;
line-height: 0.5;
margin-top: 0.15rem;
}
.menu__tagline {
grid-area: tagline;
font-size: 6vw;
font-family: kudryashev-d-excontrast-sans, sans-serif;
font-weight: 300;
margin: 0;
align-self: end;
line-height: 0.8;
position: relative;
will-change: transform;
}
.menu__nav-top {
grid-area: nav;
overflow: hidden;
height: 1.75rem;
justify-self: center;
}
.menu__nav-top a {
margin: 0 1rem;
}
.menu__nav-content {
grid-area: links;
display: flex;
flex-wrap: wrap;
align-self: start;
margin-top: 5.5vh;
}
.column {
display: flex;
flex-direction: column;
margin: 0 1rem;
min-width: 15ch;
align-items: flex-start;
}
.column__title {
margin: 1.5rem 0 0.5rem;
}
.menu__side {
grid-area: search;
align-self: center;
justify-self: end;
position: relative;
}
.menu__social {
display: none;
position: relative;
grid-area: social;
flex-direction: column;
justify-content: flex-end;
align-items: flex-end;
}
.menu__social-link {
color: var(--color-link-social);
}
.menu__social-link:hover,
.menu__social-link:focus {
color: var(--color-link-menu);
}
.menu__social-author {
margin-top: 2rem;
font-family: kudryashev-d-excontrast-sans, sans-serif;
font-weight: 300;
font-size: 2.5vw;
color: var(--color-link-menu);
will-change: transform;
}
.menu__social-author:hover,
.menu__social-author:focus {
color: var(--color-link-social);
}
.search {
white-space: nowrap;
}
.search svg {
width: 13px;
margin-left: 1rem;
}
.line-link {
color: var(--color-link-menu);
white-space: nowrap;
overflow: hidden;
position: relative;
display: inline-block;
cursor: pointer;
}
.line-link:hover,
.line-link:focus {
color: var(--color-link-menu)
}
.line-link::before {
content: '';
height: 1px;
width: 100%;
background: currentColor;
position: absolute;
top: 92%;
transition: transform 0.3s;
transform-origin: 0% 50%;
transform: scaleX(0);
}
.line-link:hover::before {
transform: scaleX(1);
transform-origin: 100% 50%;
}
@media screen and (min-width: 55.5em) {
body {
--menu-padding: 2rem;
}
.frame {
display: flex;
}
.frame__links {
margin: 0 0 0 2rem;
}
.menu {
top: 2rem;
left: 3rem;
right: 3rem;
bottom: 2rem;
}
.menu__top {
grid-template-columns: 5rem 10% minmax(200px,417px) 10% 5rem;
grid-template-areas: 'title ... nav ... search';
}
.menu__content {
grid-template-rows: 1fr 10vh;
grid-template-columns: 5rem 10% minmax(200px,417px) 10% 5rem;
grid-template-areas:
'... ... links back ...'
'tagline tagline social social social';
}
.menu__tagline {
font-size: 17.5vw;
font-size: clamp(1.5rem,17.5vh,8rem);
}
.menu__back {
height: 200px;
margin-top: calc(5.5vh + 1.5rem);
}
.menu__social {
display: flex;
}
}
src/index.html
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Expanding Rounded Menu | Codrops</title>
<!-- Generate Meta Tags via https://www.opengraph.xyz -->
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" href="https://use.typekit.net/lon4huw.css">
<link rel="stylesheet" type="text/css" href="css/base.css" />
<script>document.documentElement.className="js";var supportsCssVars=function(){var e,t=document.createElement("style");return t.innerHTML="root: { --tmp-var: bold; }",document.head.appendChild(t),e=!!(window.CSS&&window.CSS.supports&&window.CSS.supports("font-weight","var(--tmp-var)")),t.parentNode.removeChild(t),e};supportsCssVars()||alert("Please view this demo in a modern browser that supports CSS Variables.");</script>
<script src="//tympanus.net/codrops/adpacks/analytics.js"></script>
</head>
<body class="demo-1">
<main>
<div class="frame">
<h1 class="frame__title">Expanding Rounded Menu <em>(Click any link in the top menu)</em></h1>
<nav class="frame__links">
<a href="#" class="hover-line" href="http://tympanus.net/Tutorials/RisographGrainShader/">Previous demo</a>
<a href="#" class="hover-line" href="https://tympanus.net/codrops/?p=59320">Article</a>
<a href="#" class="hover-line" href="https://github.com/codrops/ExpandingRoundedMenu/">GitHub</a>
</nav>
</div>
<div class="content">
<div class="content__img content__img--left" style="background-image: url(img/img1.jpg)"></div>
<h3 class="content__title content__title--left">2018</h3>
<div class="content__img content__img--main" style="background-image: url(img/img2.jpg)"></div>
<h2 class="content__title content__title--main">
<span>A</span>
<span>S</span>
<span>O</span>
<span>R</span>
</h2>
<p class="content__description">“When you realize nothing is lacking, the whole world belongs to you.”</p>
<div class="content__img content__img--right" style="background-image: url(img/img3.jpg)"></div>
<h3 class="content__title content__title--right">2019</h3>
</div>
<div class="cover-wrap" aria-hidden="true">
<div class="cover">
<div class="cover__inner" style="background-image:url(img/cover.jpg)"></div>
</div>
</div>
<div class="menu">
<div class="menu__top">
<h2 class="menu__title">Asor</h2>
<nav class="menu__nav-top">
<a href="#" class="line-link">Clothing</a>
<a href="#" class="line-link">Dresses</a>
<a href="#" class="line-link">Accessories</a>
<a href="#" class="line-link">Brands</a>
</nav>
<div class="menu__side">
<a href="#" class="line-link">Login</a>
<button class="unbutton search" aria-label="Search">
<svg width="20" height="20" viewBox="0 0 20 20"><path d="M7.5 1.667A5.84 5.84 0 0 1 13.333 7.5 5.84 5.84 0 0 1 7.5 13.333 5.84 5.84 0 0 1 1.667 7.5 5.84 5.84 0 0 1 7.5 1.667M7.5 15a7.463 7.463 0 0 0 4.693-1.66l6.383 6.415a.833.833 0 0 0 1.181-1.176l-6.39-6.422A7.453 7.453 0 0 0 15 7.5 7.508 7.508 0 0 0 7.5 0 7.508 7.508 0 0 0 0 7.5 7.508 7.508 0 0 0 7.5 15" fill="#000"/></svg>
</button>
</div>
</div>
<div class="menu__content-wrap">
<div class="menu__content">
<nav class="menu__nav-content">
<div class="column">
<h4 class="column__title">New In</h4>
<a href="#" class="line-link">Blouses</a>
<a href="#" class="line-link">Jeans</a>
<a href="#" class="line-link">Blazers</a>
<a href="#" class="line-link">Trousers</a>
<a href="#" class="line-link">Lingerie</a>
<a href="#" class="line-link">Swimwear</a>
<h4 class="column__title">Discounts</h4>
<a href="#" class="line-link">T-Shirts</a>
<a href="#" class="line-link">Party</a>
<a href="#" class="line-link">Basics</a>
</div>
<div class="column">
<h4 class="column__title">Trending</h4>
<a href="#" class="line-link">New Season</a>
<a href="#" class="line-link">Holidays</a>
<a href="#" class="line-link">Going Out</a>
<a href="#" class="line-link">Workwear</a>
</div>
</nav>
<button class="menu__back unbutton">
<svg width="10" height="182" viewBox="0 0 10 121" preserveAspectRatio="xMidYMin meet"><path d="M5 0 .5 9h9L5 0Zm.5 120.5V8h-1v113h1v-.5Z"/></svg>
</button>
<div class="menu__social">
<a class="menu__social-link" href="http://eepurl.com/dJBUCo">subscribe</a>
<a class="menu__social-link" href="https://www.instagram.com/codropsss/">instagram</a>
<a class="menu__social-link" href="https://www.instagram.com/codropsss/">twitter</a>
<a class="menu__social-author" href="https://codrops.com">@codrops</a>
</div>
<h3 class="menu__tagline">Montebello</h3>
</div><!-- /menu__content -->
</div><!-- /menu__content-wrap -->
</div>
</main>
<script src="https://tympanus.net/codrops/adpacks/cda_sponsor.js"></script>
<script type="module" src="js/index.js"></script>
</body>
</html>
함께 쓰는 파일 4개 보기
src/js/index.js
import { gsap } from 'gsap';
// DOM elements
const DOM = {
// For demo purposes, trigger the effect when clicking any link in the menu (.line-link)
menuLinks: [...document.querySelectorAll('.line-link')],
// Cover element (wrap, outer and image inner elements)
cover: {
wrap: document.querySelector('.cover-wrap'),
outer: document.querySelector('.cover'),
inner: document.querySelector('.cover__inner'),
},
// Some of the main page content elements
// We'll animate some of the content elements when expanding the menu
content: {
imgs: [...document.querySelectorAll('.content > .content__img')],
titles: [...document.querySelectorAll('.content > .content__title')]
},
// Menu element (.menu)
menu: document.querySelector('.menu'),
// Element that slides out
menuContent: document.querySelector('.menu__content'),
// Close button
closeCtrl: document.querySelector('.menu__back'),
// Extra elements that will be animated inside the menu
extra: document.querySelectorAll('.menu__tagline, .menu__social-author')
};
let menuStatus = {
isOpen: false,
isAnimating: false
};
// Animation gsap timeline
const menuTimeline = gsap.timeline({
paused: true,
onComplete: () => menuStatus.isAnimating = false,
onReverseComplete: () => menuStatus.isAnimating = false,
defaults: {
duration: 1.2,
ease: 'power4.inOut'
}
})
.addLabel('start', 0)
.add(() => {
// Add pointer events to auto/none
DOM.menu.classList[menuStatus.isOpen ? 'add' : 'remove']('menu--open');
}, 'start')
.to(DOM.cover.wrap, {
duration: 1.6,
startAt: {scale: '1.1'},
ease: 'power3.inOut',
scale: 1
}, 'start')
.to(DOM.cover.outer, {
startAt: {y: '-100%'},
y: '0%'
}, 'start')
.to(DOM.cover.inner, {
startAt: {y: '100%'},
y: '0%'
}, 'start')
.to(DOM.content.imgs, {
//ease: 'power3.inOut',
y: position => `${position%2 === 0 ? -20 : 20}%`,
}, 'start')
.to(DOM.content.titles, {
//ease: 'power3.inOut',
y: position => `${position%2 === 0 ? 20 : -20}%`,
}, 'start')
.addLabel('menu', 0.5)
.to(DOM.menuContent, {
duration: 1,
startAt: {y: '-100%'},
y: '0%',
}, 'menu')
.addLabel('extra', 'menu+=0.6')
.set(DOM.extra, {
y: '400%',
opacity: 0
}, 'start')
.to(DOM.extra, {
duration: 0.5,
ease: 'power4',
startAt: {opacity: 1},
opacity: 1,
y: '0%'
}, 'extra');
// Menu expand
const expandMenu = () => {
if ( menuStatus.isAnimating || menuStatus.isOpen ) return;
menuStatus.isAnimating = true;
menuStatus.isOpen = true;
menuTimeline.play();
};
// Menu collapse
const collapseMenu = () => {
if ( menuStatus.isAnimating || !menuStatus.isOpen ) return;
menuStatus.isAnimating = true;
menuStatus.isOpen = false;
menuTimeline.reverse(0);
}
// Expand the menu when pressing any of the menu top links...
DOM.menuLinks.forEach(link => {
link.addEventListener('click', ev => {
ev.preventDefault();
expandMenu();
});
});
// Collapse it when pressing the close button
DOM.closeCtrl.addEventListener('click', ev => {
ev.preventDefault();
collapseMenu();
});
Media credits and license evidence실행 안내·자료
README.md
## Credits
- Images from [Unsplash](https://unsplash.com/)
## License
[MIT](LICENSE)
Made with :blue_heart: by [Codrops](http://www.codrops.com)
LICENSE실행 안내·자료
MIT License
Copyright (c) 2009 - 2021 [Codrops](https://tympanus.net/codrops)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Bundled dependency licenses실행 안내·자료
GSAP standard license snapshot
Source: https://gsap.com/community/standard-license/
Retrieved: 2026-09-22T04:22:49.089Z
Original distribution copyright and version headers remain in the runtime code.
Standard "No Charge" GSAP License
I. DEFINITIONS
“GSAP License” means the terms and conditions of this GSAP Software License Agreement.
"GSAP Products" means any Software made available at gsap.com (https://gsap.com) or any successor sites, including but not limited to the GSAP animation library and related plugins, tools, or extensions.
"Permitted Uses" means the implementation and/or use of GSAP Products on any website, web application, or digital interface by any person or entity (which may include, for clarity, those of companies that compete with Webflow in other areas of business).
"Prohibited Uses" means any implementation and/or use of GSAP Products in tools that allow users to build visual animations without code that encourages, induces, or materially assists in creating a solution that competes with Webflow’s visual animation building capabilities.
"Competitive Products" means any software, tool, or service that enables users to create, edit, or manage animations through a visual interface or builder similar to Webflow (https://webflow.com).
II. GRANT OF LICENSE
Subject to the terms and conditions of this GSAP License, Webflow grants you a non-exclusive, worldwide license to use, reproduce, display, and implement GSAP Products solely for Permitted Uses.
III. RESTRICTIONS
You may not:
Use any GSAP Products for any Prohibited Uses without prior written consent;
Reverse engineer any GSAP Products for the purpose of creating Competitive Products;
Remove or alter any proprietary notices or branding from GSAP Products.
IV. OWNERSHIP AND INTELLECTUAL PROPERTY
All intellectual property rights in GSAP Products, including but not limited to copyright, patents, trademarks, and trade secrets, remain the exclusive property of Webflow. This GSAP License does not transfer any ownership rights in GSAP Products to you.
V. TERMINATION
Webflow may terminate this GSAP License and revoke your access in its discretion if you fail to comply with any of these terms and conditions. Upon termination, you must cease all use of GSAP Products and destroy all copies in your possession.
VI. MISCELLANEOUS PROVISIONS
General: This GSAP License is incorporated into and subject to Webflow’s Terms of Service available here (https://webflow.com/legal/terms) ("Terms of Service"). In the event of any conflict or inconsistency between this GSAP License and the Terms of Service, the terms of this GSAP License shall govern in relation to your use of any GSAP Products.
Amendments: Webflow reserves the right to update or modify this GSAP License at any time by posting the revised terms on this website, provided that any such updates or modifications shall not result in any material degradation to the security, integrity, or functionality of any GSAP Products. You understand and agree that your continued use of any GSAP Products after such revisions to this GSAP License constitutes your acceptance of this GSAP License as revised. If you do not accept the revised GSAP License, you are prohibited from using versions of the GSAP Products released after the effective date of the revised GSAP License (as well as any updates made to previous versions). Notwithstanding, you may continue using previous versions of GSAP Products under the applicable terms licensed to you prior to the effective date of the revised GSAP License (for clarity, excluding any updates made thereto).
No Waiver: Failure of Webflow to enforce any provision of this GSAP License shall not constitute a waiver of future enforcement of that or any other provision.
FAQ
Is it acceptable for AI tools like ChatGPT, Cursor, Lovable, Webstudio, etc. to generate GSAP code?
Absolutely! AI-generated code is not a "Prohibited Use".
What if a WordPress plugin or theme or other niche tool allows users to create GSAP-driven effects through a visual interface? Is that prohibited?
We want to encourage developers to build on top of GSAP, including visual tools that don't directly compete with Webflow's rich animation-building capabilities. If you are not sure if your product might be considered a "Prohibited Use", feel free to contact us (https://gsap.com/contact) so we can talk through it!
Can I really use GSAP in commercial projects without paying anything?
Yes, really! Commercial usage is covered under the standard license. All of GSAP including the plugins that were formerly "members-only" like SplitText (https://gsap.com/docs/v3/Plugins/SplitText/) and MorphSVG (https://gsap.com/docs/v3/Plugins/MorphSVGPlugin) can be used in commercial projects at no charge. Enjoy! 💚
Effective date: April 30, 2025
Last modified date: May 30, 2025
Copyright (©) 2025, Webflow
BEHIND THE EXAMPLE
