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

              
                <div class="support">
  Check this out in Chrome 115+ / Chrome Canary
</div>

<nav>
  <div class="nav__content">
    <img src="https://assets.codepen.io/605876/bear-2022--white.png" alt="" />
    <a href="https://twitter.com/intent/follow?screen_name=jh3yy" target="_blank">Follow</a>
  </div>
</nav>
<main>
  <section>
    <div class="section__content">
      <h1>
        <span>All-new</span>
        <span>CSS Pro</span>
      </h1>
    </div>
  </section>
  <section>
    <div class="section__content">
      <h2>Built with CSS<br>only scroll animations.</h2>
    </div>
  </section>
  <section>
    <video src="https://assets.codepen.io/605876/seoul-21116.mp4" autoplay playsinline muted loop></video>
    <div class="section__content">
      <p data-splitting>
        <span>Animations that run off the main thread.</span><span>&nbsp;That can be driven by either the scroll position of a container or an element's position within a container!</span><span>&nbsp;No JavaScript.</span><span>&nbsp;Pretty cool.</span>
      </p>
    </div>
  </section>
  <section>
    <div class="section__content">
      <footer>
        <span>Thanks</span>
        <span>for scrolling by.</span>
      </footer>
    </div>
  </section>
</main>
              
            
!

CSS

              
                @import "normalize.css";

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

body {
  display: grid;
  place-items: center;
  min-height: 100vh;
  margin: 0;
  font-family: SF Pro Display, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 700;
  background: hsl(0 0% 2%);
  color: hsl(0 0% 98%);
  overflow-x: hidden;
}

.support {
  position: fixed;
  z-index: 10;
  left: 1rem;
  top: 1rem;
  background: white;
  color: black;
  padding: 2rem;
  border: 4px solid hsl(45 80% 50%);
}

@supports (animation-timeline: view()) {
  .support {
    display: none;
  }
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-bottom: 1px solid hsl(0 0% 50%);
	height: 52px;
	background: hsl(0 0% 20% / 0.75);
	backdrop-filter: blur(4px);
	z-index: 2;
}


.nav__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 800px;
	max-width: 100vh;
	padding: 0 1rem;
	margin: 0 auto;
	height: 100%;
}

nav a {
	text-decoration: none;
	background: hsl(220 100% 70%);
	color: hsl(0 0% 98%);
	font-weight: 400;
	padding: 0.5rem 1rem;
	border-radius: 100px;
	font-size: 0.875rem;
}

nav img {
	height: 50%;
	justify-self: start;
}

video {
	position: fixed;
	inset: 0;
	object-fit: cover;
	width: 100%;
	height: 100vh;
	z-index: -1;
	filter: saturate(0.1) brightness(0.5);
	opacity: 0;
	animation: fade-in both linear, fade-out both linear;
	animation-timeline: --section;
	animation-range: entry 10% entry 15%, exit 10% exit 15%;
}

@keyframes fade-in {
	to {
		opacity: 0.2;
	}
}

@keyframes fade-out {
	to {
		opacity: 0;
	}
}

section {
	position: relative;
	min-height: 100vh;
	display: grid;
	place-items: center;
	view-timeline: --section;
}

section:nth-of-type(1) {
	height: 100vh;
}

section:nth-of-type(2) {
	height: 140vh;
}

section:nth-of-type(3) {
	height: 200vh;
}

h1 {
	display: grid;
}

:is(h1, h2) {
	font-size: clamp(2.5rem, 7vw + 1rem, 10rem);
	text-align: center;
	line-height: 1;
	position: fixed;
	top: 50%;
	left: 50%;
	margin: 0;
	translate: -50% -50%;
	width: 100%;
}

p span {
  opacity: 0.15;
	animation: highlight both ease-in-out;
	animation-timeline: view();
}

@keyframes highlight {
	50% {
    opacity: 1;
	}
}

p span:nth-of-type(1) {
	animation-range: cover 10% cover 45%;
}
p span:nth-of-type(2) {
	animation-range: cover 30% cover 60%;
}
p span:nth-of-type(3) {
	animation-range: cover 45% cover 85%;
}
p span:nth-of-type(4) {
	animation-range: cover 75% cover 120%;
}

h1 span:first-of-type {
	display: inline-block;
	animation: fade-away both linear;
	animation-timeline: --section;
	animation-range: exit 20% exit 90%;
}

h1 span:last-of-type {
	display: inline-block;
	animation: scale-up both cubic-bezier(.1,.7,.9,1.3), fade-away both linear;
	animation-timeline: --section;
	animation-range: exit 0% exit 100%, exit 50% exit 90%;	
}

@keyframes scale-up {
	to {
		scale: 1.5;
	}
}

h2 {
	animation: grow both ease-in, fade-away both linear;
	animation-timeline: --section;
	animation-range: exit-crossing -10% exit-crossing 10%, exit 0% exit 50%;
}

h1 span:first-of-type {
	color: hsl(0 100% 50%);
	font-size: 0.35em;
}

@keyframes grow {
	0% {
		scale: 0.5;
		opacity: 0;
	}
}

@keyframes fade-away {
	100% {
		opacity: 0;
	}
}

h2 {
	font-size: clamp(2rem, 5vw + 1rem, 6rem);
	text-align: center;
}

p {
  font-size: clamp(1.625rem, 3vw + 1rem, 8rem);
  letter-spacing: 0;
  line-height: 1;
}

.section__content {
	width: 800px;
	max-width: 100vw;
	padding: 0 1rem;
}


footer {
	display: grid;
	place-items: start;
	text-align: left;
	font-size: clamp(1.625rem, 3vw + 1rem, 6rem);
}

footer span:first-of-type {
	color: hsl(140 100% 50%);
	font-size: 0.5em;
}
              
            
!

JS

              
                
              
            
!
999px

Console