GSAP 원본
Complex Timeline
배경 · MIT (public Pen panels); GSAP Standard No Charge License
갤러리 안에서는 화면을 벗어나거나 움직임을 멈추면 예제도 닫힙니다. 다시 재생할 때는 처음부터 시작해요.
저장한 HTML에서는 갤러리의 재생 설정이 적용되지 않아요.
SOURCE FILES
원본 코드 읽기
수집한 원본 소스와 실행 안내를 함께 제공합니다. 실행 HTML에는 미리보기를 위한 실행 환경이 들어 있습니다.
vendor/gsap-previews/sources/gsap-70a853b7367e/index.html
<main>
<svg id="svg-stage" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 248 248">
<g class="group1">
<image href="https://assets.codepen.io/16327/flair-2.png" />
<image href="https://assets.codepen.io/16327/flair-2.png" />
<image href="https://assets.codepen.io/16327/flair-2.png" />
</g>
<g class="group2">
<image href="https://assets.codepen.io/16327/flair-3.png" mask="url(#g2_mask)"/>
</g>
<mask id="g2_mask" fill="#fff">
<circle cx="124" cy="0" r="0"/>
<circle cx="124" cy="248" r="0"/>
</mask>
<g class="group3">
<image href="https://assets.codepen.io/16327/flair-4.png" mask="url(#g3_mask)"/>
</g>
<mask id="g3_mask" fill="#fff">
<rect x="0" y="0" width="124" height="124"/>
<rect x="124" y="0" width="124" height="124"/>
<rect x="0" y="124" width="124" height="124"/>
<rect x="124" y="124" width="124" height="124"/>
</mask>
<g class="group4">
<image href="https://assets.codepen.io/16327/flair-5.png" x="70" />
</g>
<g class="group5">
<image href="https://assets.codepen.io/16327/flair-7.png" mask="url(#g5_mask)"/>
</g>
<mask id="g5_mask" fill="#fff">
<path d="M0 248h248L124 0 0 247z"/>
<circle cx="124" cy="83" r="83"/>
</mask>
</svg>
</main>vendor/gsap-previews/sources/gsap-70a853b7367e/style.css
html, body {
margin:0;
padding:0;
}
main {
display:flex;
align-items:center;
justify-content:center;
width:100%;
height:100vh;
background:#0e100f;
}
#svg-stage {
opacity: 0;
width:57.14%;
max-height:248px;
}
함께 쓰는 파일 4개 보기
vendor/gsap-previews/sources/gsap-70a853b7367e/script.js
gsap.set('#svg-stage', {opacity: 1});
const tl = gsap.timeline({repeat:-1, repeatDelay:0.5})
.fromTo('.group1', {scale:0.1, transformOrigin:'124 124'}, {duration:0.35, scale:1, ease:'expo.inOut'})
.to('.group1', {duration:1.2, rotate:15, ease:'none'}, 0.1)
.to('.group1 image', {scale:(i)=>[0.4,0.2,0.3][i], x:(i)=>[0,135,100][i], y:(i)=>[90,24,124][i], ease:'back'}, 0.4)
.to('.group1 image', {duration:0.01, opacity:0, stagger:0.06}, 1.1)
.to('#g2_mask circle', {duration:0.4, attr:{r:"124"}, ease:'circ'}, 1.3)
.fromTo('.group2', {scale:1, transformOrigin:'124 124'}, {duration:1.5, scale:0.9, ease:'none'}, 1.3)
.to('#g2_mask circle', {duration:0.3, attr:{cx:(i)=>["+=248","-=248"][i]}, ease:'sine.in'}, 2.45)
.fromTo('.group3', {transformOrigin:'124 124', rotate:-90}, {duration:0.9, rotate:0, ease:'expo'}, 2.6)
.fromTo('#g3_mask rect', {transformOrigin:(i)=>['0 124','124 0','124 124','248 124'][i], scale:0},{duration:0.4, scale:1, ease:'expo', stagger:-0.03}, 2.6)
.to('.group3', {duration:0.01, scale:0}, 3.7)
.from('.group4 image', {duration:0.01, opacity:0}, 3.8)
.fromTo('.group4', {transformOrigin:'83 124', rotate:15, scale:0.2}, {duration:0.5, rotate:0, scale:0.85, ease:'bounce'}, 3.8)
.to('.group4 image', {duration:0.01, opacity:0}, 4.7)
.fromTo('#g5_mask path', {transformOrigin:'124 124', scale:0},{duration:0.8, scale:1, ease:'expo'}, 4.7)
.fromTo('#g5_mask circle', {transformOrigin:'83 0', scale:0},{scale:1, ease:'expo'}, 4.7)
GSDevTools.create({animation: tl});
vendor/gsap-previews/sources/gsap-70a853b7367e/adapters/host.css실행 안내·자료
/* StyleGallery host styles: independent replacement for unavailable shared Pen CSS. */
:root{--color-just-black:#111522;--color-surface-white:#f7f3ec;--color-surface75:#cfccc6;--color-surface50:#898e9f;--color-surface25:#414859;--color-shockingly-green:#95efd2;--color-lt-green:#b5f4da;--color-pink:#fbadce;--color-purple:#897dff;--color-lilac:#b5a1ff;--color-orangey:#ffd28c;--color-blue:#75d8ed;--color-ui-gradient:linear-gradient(135deg,#fbadce,#897dff);--light:#f7f3ec;--dark:#111522;--mid:#898e9f}
*{box-sizing:border-box}body{background:#111522;color:#f7f3ec;font-family:system-ui,sans-serif;margin:0;min-height:100vh;width:100%}button,input{font:inherit}button,.button{background:#111522;border:1px solid #898e9f;border-radius:.55rem;color:#f7f3ec;cursor:pointer;padding:.65rem 1rem}button:focus-visible,a:focus-visible,input:focus-visible{outline:3px solid #95efd2;outline-offset:4px}h1,h2,h3,h4{line-height:1.15}h4{font-weight:500}code{font-family:ui-monospace,monospace}.heading-l{font-size:clamp(2rem,6vw,5rem)}.heading-text{font-size:clamp(1.5rem,4vw,3rem)}.box{background:#95efd2;border-radius:14px;height:clamp(38px,12vw,80px);width:clamp(38px,12vw,80px)}.green{background:#95efd2}.purple{background:#897dff}.orange{background:#ffd28c}.gradient-pink{background:linear-gradient(140deg,#fbadce,#fc7f8e)}.gradient-purple{background:linear-gradient(140deg,#b5a1ff,#537ff7)}.center{align-items:center;display:flex;justify-content:center}.text-center{text-align:center}.panel{min-height:100vh;width:100%}.flair:not(img){background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNDgiIGhlaWdodD0iMjQ4IiB2aWV3Qm94PSIwIDAgMjQ4IDI0OCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJnIiB4Mj0iMSIgeTI9IjEiPjxzdG9wIHN0b3AtY29sb3I9IiNiNWExZmYiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiM3NWQ4ZWQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48ZyBmaWxsPSJ1cmwoI2cpIj48cGF0aCBkPSJNODcgMjBoNzR2NjdoNjd2NzRoLTY3djY3SDg3di02N0gyMFY4N2g2N1oiLz48L2c+PC9zdmc+");background-position:center;background-repeat:no-repeat;background-size:contain;height:80px;width:80px}.flair--3:not(img){background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNDgiIGhlaWdodD0iMjQ4IiB2aWV3Qm94PSIwIDAgMjQ4IDI0OCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJnIiB4Mj0iMSIgeTI9IjEiPjxzdG9wIHN0b3AtY29sb3I9IiM5NWVmZDIiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiM1MzdmZjciLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48ZyBmaWxsPSJ1cmwoI2cpIj48Y2lyY2xlIGN4PSIxMjQiIGN5PSIxMjQiIHI9Ijg4IiBmaWxsPSJub25lIiBzdHJva2U9InVybCgjZykiIHN0cm9rZS13aWR0aD0iNDgiLz48Y2lyY2xlIGN4PSIxODMiIGN5PSI2MCIgcj0iMjMiIGZpbGw9IiNmNmYzZWIiLz48L2c+PC9zdmc+")}.braces{font-size:1rem}img{max-width:100%}
/* External font programs are omitted; preserve readable fallback typography. */
body,button,input,h1,h2,h3,h4,p,span,div{font-family:inherit}body{font-family:system-ui,sans-serif}code,pre{font-family:ui-monospace,monospace}
vendor/gsap-previews/sources/gsap-70a853b7367e/adapters/script.js실행 안내·자료
window.__STYLEGALLERY_ASSETS__={};
gsap.set("#svg-stage", { opacity: 1 });
const tl = gsap.timeline({ repeat: -1, repeatDelay: 0.5 }).fromTo(".group1", { scale: 0.1, transformOrigin: "124 124" }, { duration: 0.35, scale: 1, ease: "expo.inOut" }).to(".group1", { duration: 1.2, rotate: 15, ease: "none" }, 0.1).to(".group1 image", { scale: (i) => [0.4, 0.2, 0.3][i], x: (i) => [0, 135, 100][i], y: (i) => [90, 24, 124][i], ease: "back" }, 0.4).to(".group1 image", { duration: 0.01, opacity: 0, stagger: 0.06 }, 1.1).to("#g2_mask circle", { duration: 0.4, attr: { r: "124" }, ease: "circ" }, 1.3).fromTo(".group2", { scale: 1, transformOrigin: "124 124" }, { duration: 1.5, scale: 0.9, ease: "none" }, 1.3).to("#g2_mask circle", { duration: 0.3, attr: { cx: (i) => ["+=248", "-=248"][i] }, ease: "sine.in" }, 2.45).fromTo(".group3", { transformOrigin: "124 124", rotate: -90 }, { duration: 0.9, rotate: 0, ease: "expo" }, 2.6).fromTo("#g3_mask rect", { transformOrigin: (i) => ["0 124", "124 0", "124 124", "248 124"][i], scale: 0 }, { duration: 0.4, scale: 1, ease: "expo", stagger: -0.03 }, 2.6).to(".group3", { duration: 0.01, scale: 0 }, 3.7).from(".group4 image", { duration: 0.01, opacity: 0 }, 3.8).fromTo(".group4", { transformOrigin: "83 124", rotate: 15, scale: 0.2 }, { duration: 0.5, rotate: 0, scale: 0.85, ease: "bounce" }, 3.8).to(".group4 image", { duration: 0.01, opacity: 0 }, 4.7).fromTo("#g5_mask path", { transformOrigin: "124 124", scale: 0 }, { duration: 0.8, scale: 1, ease: "expo" }, 4.7).fromTo("#g5_mask circle", { transformOrigin: "83 0", scale: 0 }, { scale: 1, ease: "expo" }, 4.7);
GSDevTools.create({ animation: tl });
LICENSE실행 안내·자료
<!--
Copyright (c) 2024 - GreenSock - https://codepen.io/GreenSock/pen/PorGpww?editors=1010
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.
-->
GSAP 3.15.0
Copyright 2026, GreenSock. All rights reserved.
Subject to the Standard No Charge License: https://gsap.com/standard-license.
The full notice in each original GSAP library file is preserved.
StyleGallery host adapter and replacement SVG subjects: locally authored.
BEHIND THE EXAMPLE
이 장면을 만드는 원리
명시된 시점에서 겹치는 SVG 단계
여러 표현이 겹칠 때 전체 재생의 소유자와 단계 순서를 명시합니다.
- 이 예제에서는
- 다섯 group의 트윈은 0.1, 1.3, 2.6, 3.8, 4.7초 등 명시된 위치에서 겹칩니다. 마스크의 circle·rect·path 속성도 같은 timeline에서 바뀌며 GSDevTools가 해당 tl을 제어합니다. 도형 이미지는 독립 제작 대체물이므로 원본 아트의 외형 비교 예제는 아닙니다.
