Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <nav>
  <a href="https://jhey.dev/links" target="_blank">
    <svg class="w-9" viewBox="0 0 969 955" fill="none" xmlns="http://www.w3.org/2000/svg">
      <circle cx="161.191" cy="320.191" r="133.191" stroke="currentColor" stroke-width="20"></circle>
      <circle cx="806.809" cy="320.191" r="133.191" stroke="currentColor" stroke-width="20"></circle>
      <circle cx="695.019" cy="587.733" r="31.4016" fill="currentColor"></circle>
      <circle cx="272.981" cy="587.733" r="31.4016" fill="currentColor"></circle>
      <path d="M564.388 712.083C564.388 743.994 526.035 779.911 483.372 779.911C440.709 779.911 402.356 743.994 402.356 712.083C402.356 680.173 440.709 664.353 483.372 664.353C526.035 664.353 564.388 680.173 564.388 712.083Z" fill="currentColor"></path>
      <rect x="310.42" y="448.31" width="343.468" height="51.4986" fill="#FF1E1E"></rect>
      <path fill-rule="evenodd" clip-rule="evenodd" d="M745.643 288.24C815.368 344.185 854.539 432.623 854.539 511.741H614.938V454.652C614.938 433.113 597.477 415.652 575.938 415.652H388.37C366.831 415.652 349.37 433.113 349.37 454.652V511.741L110.949 511.741C110.949 432.623 150.12 344.185 219.845 288.24C289.57 232.295 384.138 200.865 482.744 200.865C581.35 200.865 675.918 232.295 745.643 288.24Z" fill="currentColor"></path>
    </svg>
  </a>
  <a href="https://twitter.com/intent/follow?screen_name=jh3yy">Follow 𝕏</a>
</nav>
<main>
  <section>
    <div class="fixed">
      <img src="https://fastly.picsum.photos/id/310/1920/1080.jpg?hmac=HDJM8ptvuyfahXPE6mcsYhG1XGE1mUb2oaa4hlFZ0yg" alt="">
      <div class="content">
        <h1>Scroll and see.</h1>
        <p>The magic of CSS scroll-driven animation to power a landing page. No JavaScript harmed. Animation runs off the main thread. Chain them and make use of fixed elements.</p>
      </div>
    </div>
  </section>
  <section>
    <article>
      <div class="fixed">
        <img src="https://fastly.picsum.photos/id/846/1920/1080.jpg?hmac=rx55XDjKPLjmW5WdHBRqOphU4wZkLT5W3TC_WBdvyVY" alt="">
      </div>
      <div class="static">
        <div class="content">
          <div class="text-wrap">
            <div class="loud-wrap">
              <h2>Think out loud.</h2>
            </div>
          </div>
        </div>
      </div>
    </article>
    <article>
      <div class="fixed"></div>
      <div class="static">
        <div class="content">
          <h2>Do stuff with code.<br />Mess about and find out.</h2>
        </div>
      </div>
    </article>
    <article>
      <div class="fixed">
        <img src="https://fastly.picsum.photos/id/985/1920/1080.jpg?hmac=dLb_5lBJW4AZhZDUXweY5WlrnscpKLtCKffaqSrF9Vw" alt="">
      </div>
      <div class="static">
        <div class="content">
          <h2>Make cool stuff.</h2>
          <div class="chat-container">
            <div class="text-blocks">
              <p>How can I do this?</p>
              <p>With CSS scroll-driven animations. You don't need any JavaScript.</p>
              <p>Any advice?</p>
              <p>Just one thing... Make it pop!</p>
              <p>Thanks Jhey.</p>
            </div>
          </div>
          <div class="filler">
            <h2>Pretty cool.</h2>
          </div>
        </div>
      </div>
    </article>
    <article>
      <!-- <div class="fixed">
            <img src="https://fastly.picsum.photos/id/985/1920/1080.jpg?hmac=dLb_5lBJW4AZhZDUXweY5WlrnscpKLtCKffaqSrF9Vw" alt="">
          </div> -->
      <div class="fixed">
        <img src="https://fastly.picsum.photos/id/681/1920/1080.jpg?hmac=qyb0NfTEkQw9QdsIYQbV0GhAEyKiPcAfetmIF_e8Kik" alt="" />
        <div class="content">
          <h2>Fin.<br>Follow for more.</h2>
        </div>
      </div>
      <!-- <div class="static">
            <div class="content">
              <h2>Fin.</h2>
            </div>
          </div> -->
    </article>
  </section>
</main>
              
            
!

CSS

              
                @font-face {
  font-family: "Geist Sans";
  src: url("https://assets.codepen.io/605876/GeistVF.ttf") format("truetype");
}

*,
*:after,
*:before {
	box-sizing: border-box;
}

html {
	scroll-snap-type: y mandatory;
}

body {
	min-height: 100vh;
	font-family:  "Geist Sans", "SF Pro Text", "SF Pro Icons", "AOS Icons", "Helvetica Neue", Helvetica, Arial, sans-serif, system-ui;
	font-weight: 80;
	background: black;
	color: hsl(0 0% 90%);
	overflow-x: hidden;
}

p {
	max-width: 40ch;
}

section:nth-of-type(1) {
	scroll-snap-align: center;
	height: 100vh;
}

section:nth-of-type(2) {
	scroll-snap-align: start;
}

article {
	min-height: 100vh;
}
:is(h1, h2) {
	font-weight: 70;
	font-size: clamp(2.5rem, 3.35vw + 1rem, 8rem);
	letter-spacing: -0.075ch;
	margin: 0;
}

h1 {
	color: hsl(0 0% 90%);
}

:is(section, article) {
	position: relative;
}

nav {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 1rem;
	z-index: 999;
	display: flex;
	justify-content: space-between;
}
a:first-of-type {
	width: 48px;
	aspect-ratio: 1;
	display: grid;
	place-items: center;
	color: white;
}
a:last-of-type {
	background: hsl(173 100% 51%);
	color: black;
	padding: 1rem 2rem;
	border-radius: 22px;
	text-decoration: none;
	font-weight: 120;
	transition: background 0.2s;
}
a:last-of-type:is(:hover, :focus-visible) {
	background: hsl(173 100% 40%);
}

.content {
	margin: 0 auto;
	width: 900px;
	max-width: 100%;
	height: 100%;
	z-index: 2;
	position: absolute;
	inset: 0;
  padding: 1rem;
}

.fixed img {
	height: 100%;
	width: 150%;
	object-fit: cover;
	z-index: -1;
	position: absolute;
	inset: 0;
	left: 50%;
	translate: -50% 0;
	filter: brightness(0.5);
}

section:first-of-type img {
	left: 50%;
	translate: -50% 0;
}

section:first-of-type {
	padding: 2rem 1rem;
	display: grid;
	align-content: end;
	justify-content: start;
}

section:first-of-type .fixed {
	z-index: 5;
}

section:first-of-type .fixed .content {
	margin: 0 auto;
	width: 900px;
	max-width: 100%;
	display: grid;
	align-content: center;
	justify-content: start;
	padding: 6rem 2rem;
	height: 100%;
}

section:first-of-type {
	background: black;
}

section:first-of-type p {
	font-size: clamp(1rem, 0.2vw + 1rem, 2rem);
}

section:nth-of-type(2) article:first-of-type .fixed {
	z-index: 2;
}

section:nth-of-type(2) .content {
	display: grid;
	padding: 4rem 1rem;
	align-content: center;
}

section:nth-of-type(2) article:first-of-type .content {
	align-content: end;
}

section:nth-of-type(2) article:first-of-type .fixed::after {
	content: "";
	position: absolute;
	inset: 0;
	background: hsl(0 0% 0% / 0.25);
}

section:nth-of-type(2) article:first-of-type h2 {
	padding: 1rem 0;
}

section:nth-of-type(2) article:nth-of-type(2) .fixed {
	background: black;
	z-index: 2;
}

section:nth-of-type(2) article:nth-of-type(3) .content {
	align-content: start;
}

section:nth-of-type(2) article:nth-of-type(3) .fixed {
	z-index: 2;
}

section:nth-of-type(2) article:nth-of-type(3) img {
	filter: saturate(0.5) brightness(0.5);
}

.text-blocks {
	max-width: 100%;
	width: 40ch;
	justify-self: end;
	display: grid;
	place-items: center;
	gap: 2rem 0;
}

/* Text block styling */
.chat-container {
	height: 100vh;
	width: 100%;
	position: sticky;
	top: 0;
	display: grid;
	place-items: center;
}
.text-blocks p {
	display: inline-block;
	border-radius: 6px;
	margin: 0;
	font-size: clamp(1.5rem, 0.5vw + 1rem, 4rem);
	font-weight: 120;
}
.text-blocks p:nth-of-type(even) {
	justify-self: end;
	text-align: right;
	color: hsl(173 100% 51%);
}
.text-blocks p:nth-of-type(odd) {
	justify-self: start;
}

.filler {
	display: none;
}


@supports (animation-timeline: scroll()) {
  @media(prefers-reduced-motion: no-preference) {
    article {
      view-timeline: --article;
    }

    .fixed {
      position: fixed;
      inset: 0;
    }
    .static {
      position: absolute;
      inset: 0;
      z-index: 6;
    }
    .filler {
      display: block;
      width: 100%;
      position: absolute;
      bottom: 30vh;
      padding: 1rem;
    }

    .text-blocks p {
      animation: slide-in, fade-in;
      animation-fill-mode: both;
      animation-timing-function: linear;
      animation-timeline: --article;
    }

    .text-blocks p:nth-of-type(1) { animation-range: entry-crossing 50% entry-crossing 55%; }
    .text-blocks p:nth-of-type(2) { animation-range: entry-crossing 55% entry-crossing 60%; }
    .text-blocks p:nth-of-type(3) { animation-range: entry-crossing 60% entry-crossing 65%; }
    .text-blocks p:nth-of-type(4) { animation-range: entry-crossing 65% entry-crossing 70%; }
    .text-blocks p:nth-of-type(5) { animation-range: entry-crossing 70% entry-crossing 75%; }

    section:nth-of-type(2) article:last-of-type {
      z-index: 5;
    }
    section:nth-of-type(2) article:nth-of-type(3) {
      height: 400vh;
    }
    section:nth-of-type(2) article:nth-of-type(3) h2 {
      margin-top: 80vh;
    }
    section:nth-of-type(2) article:last-of-type .fixed {
      clip-path: ellipse(220% 200% at 50% 300%);
      animation: unclip both linear;
      animation-timeline: --article;
      animation-range: entry 20% entry 80%;
    }
    .filler h2 {
      animation: fade-away, fade-out;
      animation-timing-function: linear;
      animation-fill-mode: both;
      animation-timeline: --article;
      animation-range: exit 40% exit 75%, exit 70% exit 90%;
    }
    .loud-wrap {
      clip-path: inset(0 0 0 0);
      animation: unmask both linear;
      animation-timeline: --article;
      animation-range: entry 20% entry 80%;
      mask: linear-gradient(white 50%, transparent) 0 100% / 100% 200% no-repeat;
    }
    .text-wrap {
      position: sticky;
      bottom: 4rem;
      transform-origin: 50% 0;
      animation: fade-away both linear, fade-out both linear;
      animation-timeline: --article;
      animation-range: exit 40% exit 75%, exit 70% exit 100%;
    }
    .text-blocks {
      animation: fade-out both linear;
      animation-timeline: --article;
      animation-range: entry-crossing 75% entry-crossing 100%;
    }
    section:nth-of-type(2) article:nth-of-type(3) .fixed {
      animation: fade-in both linear, fade-out both linear;
      animation-timeline: --article, --article;
      animation-range: entry 45% exit-crossing 0%, exit 0% exit 15%;
    }

    section:nth-of-type(2) article:nth-of-type(2) .fixed {
      animation: fade-in;
      animation-fill-mode: both;
      animation-timing-function: linear;
      animation-timeline: --article;
      animation-range: entry 60% exit 30%;
    }
    section:nth-of-type(2) article:nth-of-type(2) h2 {
      animation: slide-in, fade-in, fade-away, fade-out;
      animation-fill-mode: both;
      animation-timing-function: linear;
      animation-timeline: view(), view(), --article, --article;
      animation-range: entry 100% cover 25%, entry 100% cover 35%, exit 20% exit 40%, exit 40% exit 50%;
    }
    section:nth-of-type(2) article:first-of-type h2 {
      animation: slide-up both linear;
      animation-timeline: --article;
      animation-range: entry 20% entry 80%;
    }
    section:nth-of-type(2) article:first-of-type img {
      animation: scale-down both linear;
      animation-timeline: --article;
      animation-range: entry;
    }
    section:nth-of-type(2) article:first-of-type .fixed {
      clip-path: ellipse(220% 200% at 50% 300%);
      animation: unclip both linear;
      animation-timeline: --article;
      animation-range: entry 0 entry 100%;
    }
    section:first-of-type {
      view-timeline: --section;
    }
    section:first-of-type .fixed {
      animation: scale-and-move both linear, fade-out both linear;
      animation-timeline: --section;
      animation-range: exit 0% exit 50%, exit 0% exit 25%;
      transform-origin: 50% 0;
    }
    /* Keyframes collection	*/
    @keyframes slide-in {
      0% {
        translate: 0 100%;
      }
    }

    @keyframes fade-in {
      0% {
        opacity: 0;
      }
    }
    @keyframes slide-up {
      0% {
        translate: 0 100%;
      }
    }
    @keyframes fade-away {
      to {
        filter: blur(4rem);
      }
    }
    @keyframes unmask {
      to {
        mask-position: 0 0;
      }
    }
    @keyframes scale-down {
      0% {
        scale: 5;
      }
    }
    @keyframes unclip {
      to { clip-path: ellipse(220% 200% at 50% 175%); }
    }
    @keyframes fade-out {
      to { opacity: 0; }
    }
    @keyframes scale-and-move {
      to {
        translate: 0 -10%;
        scale: 0.35 0.5;
      }
    }
  }
}
              
            
!

JS

              
                import gsap from 'https://cdn.skypack.dev/gsap@3.12.2'
import { ScrollTrigger } from 'https://cdn.skypack.dev/gsap@3.12.2/ScrollTrigger';

if (!CSS.supports('animation-timeline: view()') && window.matchMedia('(prefers-reduced-motion: no-preference)').matches) {
  gsap.registerPlugin(ScrollTrigger)
  // Set up all the scroll animations with ScrollTrigger instead.
  // Blanket styles
  gsap.set('.fixed', {
    position: 'fixed',
    inset: 0,
  })
  gsap.set('.static', {
    position: 'absolute',
    inset: 0,
    zIndex: 6,
  })
  // First section
  gsap.set('section:first-of-type .fixed', {
    transformOrigin: '50% 0%',
  })
  gsap.to('section:first-of-type .fixed', {
    scale: '0.35 0.5',
    yPercent: -10,
    scrollTrigger: {
      scrub: 0.5,
      trigger: 'section:first-of-type',
      start: 'top top',
      end: 'bottom 50%'
    }
  })
  gsap.to('section:first-of-type .fixed', {
    opacity: 0,
    scrollTrigger: {
      scrub: 0.5,
      trigger: 'section:first-of-type',
      start: 'top top',
      end: 'bottom 75%'
    }
  })
  // The second section with image scaling down, etc.
  gsap.set('section:nth-of-type(2) article:first-of-type .fixed', {
    clipPath: 'ellipse(220% 200% at 50% 300%)',
    zIndex: 3,
  })
  gsap.to('section:nth-of-type(2) article:first-of-type .fixed', {
    clipPath: 'ellipse(220% 200% at 50% 175%)',
    scrollTrigger: {
      scrub: 0.5,
      trigger: 'section:nth-of-type(2) article:first-of-type',
      start: 'top bottom',
      end: 'top top',
    }
  })
  gsap.from('section:nth-of-type(2) article:first-of-type img', {
    scale: 5,
    scrollTrigger: {
      scrub: 0.5,
      trigger: 'section:nth-of-type(2) article:first-of-type',
      start: 'top bottom',
      end: 'top top',
    }
  })
  
  gsap.set('.loud-wrap', {
    clipPath: 'inset(0 0 0 0)',
    mask: 'linear-gradient(white 50%, transparent) 0 100% / 100% 200% no-repeat',
  })
  gsap.set('.text-wrap', {
    position: 'sticky',
    bottom: '4rem',
    transformOrigin: '50% 0',
  })
  gsap.from('section:nth-of-type(2) article:first-of-type h2', {
    yPercent: 100,
    scrollTrigger: {
      scrub: 0.5,
      trigger: 'section:nth-of-type(2) article:first-of-type',
      start: 'top 50%',
      end: 'top 0%',
    }
  })
  gsap.to('section:nth-of-type(2) article:first-of-type .loud-wrap', {
    maskPosition: '0 0',
    scrollTrigger: {
      scrub: 0.5,
      trigger: 'section:nth-of-type(2) article:first-of-type',
      start: 'top 50%',
      end: 'top 0%',
    }
  })
  // Blur the text on exit
  gsap.to('section:nth-of-type(2) article:first-of-type .text-wrap', {
    filter: 'blur(4rem)',
    opacity: 0,
    scrollTrigger: {
      scrub: 0.5,
      trigger: 'section:nth-of-type(2) article:first-of-type',
      start: 'bottom 60%',
      end: 'bottom 25%',
    }
  })

  // Third section
  gsap.set('section:nth-of-type(2) article:nth-of-type(2) .fixed', { zIndex: 3 })
  gsap.from('section:nth-of-type(2) article:nth-of-type(2) .fixed', {
    opacity: 0,
    scrollTrigger: {
      scrub: 0.5,
      trigger: 'section:nth-of-type(2) article:nth-of-type(2)',
      start: 'top 50%',
      end: 'top -30%',
    }
  })
  gsap.from('section:nth-of-type(2) article:nth-of-type(2) h2', {
    yPercent: 100,
    opacity: 0,
    scrollTrigger: {
      scrub: 0.5,
      trigger: 'section:nth-of-type(2) article:nth-of-type(2)',
      start: 'top 50%',
      end: 'top 25%',
    }
  })
  gsap.to('section:nth-of-type(2) article:nth-of-type(2) h2', {
    filter: 'blur(4rem)',
    color: 'transparent',
    scrollTrigger: {
      scrub: 0.5,
      trigger: 'section:nth-of-type(2) article:nth-of-type(2)',
      start: 'bottom bottom',
      end: 'bottom 50%',
    }
  })
  // Fourth
  gsap.set('.filler', {
    display: 'block',
    position: 'absolute',
    bottom: '30vh',
    padding: '1rem',
  })
  gsap.set('section:nth-of-type(2) article:nth-of-type(3)', {
    height: '400vh'
  })
  gsap.set('section:nth-of-type(2) article:nth-of-type(3) .fixed', {
    zIndex: 3
  })
  gsap.set('section:nth-of-type(2) article:nth-of-type(3) h2', {
    marginTop: '80vh'
  })
  gsap.from('section:nth-of-type(2) article:nth-of-type(3) .fixed', {
    opacity: 0,
    scrollTrigger: {
      trigger: 'section:nth-of-type(2) article:nth-of-type(3)',
      scrub: 0.5,
      start: 'top 80%',
      end: 'top top'
    }
  })
  gsap.to('section:nth-of-type(2) article:nth-of-type(3) img', {
    opacity: 0,
    scrollTrigger: {
      trigger: 'section:nth-of-type(2) article:nth-of-type(3)',
      scrub: 0.5,
      start: 'bottom bottom',
      end: 'bottom 85%'
    }
  })
  // Animate the text blocks
  const LINES = document.querySelectorAll('.text-blocks p')
  LINES.forEach((LINE, index) => {
    gsap.from(LINE, { 
      yPercent: 100,
      opacity: 0,
      scrollTrigger: {
        trigger: 'section:nth-of-type(2) article:nth-of-type(3)',
        scrub: 0.5,
        start: `top -=${90 + (index * 10)}%`,
        end: `top -=${(100 + (index * 10))}%`,
      }
    })
  })
  gsap.to('.text-blocks', {
    opacity: 0,
    scrollTrigger: {
      trigger: 'section:nth-of-type(2) article:nth-of-type(3)',
      scrub: 0.5,
      start: 'bottom 130%',
      end: 'bottom 110%'
    }
  })
  gsap.to('.filler h2', {
    opacity: 0,
    filter: 'blur(4rem)',
    scrollTrigger: {
      trigger: 'section:nth-of-type(2) article:nth-of-type(3)',
      scrub: 0.5,
      start: 'bottom 55%',
      end: 'bottom 30%'
    }
  })
  // The last piece is unclipping the end piece
  gsap.set('section:nth-of-type(2) article:last-of-type .fixed', {
    clipPath: 'ellipse(220% 200% at 50% 300%)',
    zIndex: 5,
  })
  gsap.to('section:nth-of-type(2) article:last-of-type .fixed', {
    clipPath: 'ellipse(220% 200% at 50% 175%)',
    scrollTrigger: {
      trigger: 'section:nth-of-type(2) article:last-of-type',
      scrub: 0.5,
      start: 'top 80%',
      end: 'top 20%',
    }
  })
}
              
            
!
999px

Console