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="btn">Click!</div>
<h1>
  <span>TEST1 TEST1 TEST1</span>
  <span>TEST2 TEST2 TEST2</span>
  <span>TEST3 TEST3 TEST3</span>
  <span>TEST4 TEST4 TEST4</span>
</h1>
              
            
!

CSS

              
                  span {
    position: relative;
    display: block;
    width: 350px;
  }
  span::after {
    content: '';
    display: block;
    background: red;
    position: absolute;
    /*
    rightにすると幕は右側に向かって開き、
    leftにすると幕は左側に向かって開く
    */
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: 1s;
  }
  
  /* このクラスを付けることによりカバーが外れる  */
  .delay::after {
    width: 0%;
  }
  
  
  .btn {
    width: 100px;
    line-height: 50px;
    background: #ddd;
    text-align: center;
  }
              
            
!

JS

              
                $(function() {
  var i = 0;
  $('.btn').click(function() {
    //eachにより複数のspanが順次処理される
    $('span').each(function() {
      //delayによる遅延処理。後のspan要素ほど遅延時間が長くなる。
      //これにより時間差でカバーが外れるようになる
      $(this).delay(500 * i).queue(function() {
        $(this).addClass('delay');
      })
      i++;
    });
  });
});
              
            
!
999px

Console