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

              
                <p id="demo"><span>Silky smooth animations, driven by scroll, running off the main thread … and all that with just a few lines of extra code – What's not to like?!</span></p>

<footer>
  <p>This demo is part of <a href="https://goo.gle/css-wrapped-2023" target="_top">#CSSWrapped2023</a></p>
</footer>
              
            
!

CSS

              
                #demo {
  position: fixed;
  font-size: 1.25em;
  width: 90vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  text-align: center;
  font-family: Chivo Mono, monospace;

  --chars: 144;
}

span {
  background: 
		/* base color */ #eee /* highlight gradient */
    linear-gradient(to right, #6300ff 0%, #e915c7 100%) 0 / 0 no-repeat;
  -webkit-background-clip: text;
  color: transparent;

  animation: text steps(var(--chars)) forwards;
  animation-timeline: scroll(root);
}

body {
  height: 400dvh;
}

@keyframes text {
  0% {
    background-size: 0ch;
  }
  100% {
    background-size: calc(var(--chars) * 1ch);
  }
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: clamp(16px, 2vmax + 1em, 42px);
}

footer {
  position: fixed;
  bottom: 1em;
  left: 0;
  right: 0;
  text-align: center;

  font-family: Syne;
  font-size: 0.5rem;
  text-align: center;
  font-style: italic;
}

html {
  --scrollbar-thumb-color: #e915c7;
  --scrollbar-track-color: #eee;
  scrollbar-color: var(--scrollbar-thumb-color) var(--scrollbar-track-color);
}

@supports not (scrollbar-color: red blue) {
  html::-webkit-scrollbar {
    width: 1em;
  }
  html::-webkit-scrollbar-track {
    background: var(--scrollbar-track-color);
  }
  html::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb-color);
  }
}

              
            
!

JS

              
                
              
            
!
999px

Console