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

Save Automatically?

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

              
                .load-man
              
            
!

CSS

              
                $black        = #111
$blue         = blue
$yellow       = yellow
$white        = $white
$chomp-angle  = 45
$chomp-speed  = .35s
$track-height = 18px
$track-length = 350px
$track-speed  = 1.2s
$load-size    = 5 * $track-height

/**
  * Funny enough, the actual element represents the moving track.
  *
  * We use it's pseudo elements to create our head pieces.
*/
.load-man
  height     $track-height
  position   absolute
  top        50%
  left       50%
  width      $track-length
  margin-top -5px
  background repeating-linear-gradient(90deg, white, white 5%, transparent 5%, transparent 35%)
  animation  travel $track-speed infinite linear

  /**
    * Our pseudo elements create the head pieces
    *
    * They are near identical minus subtle differences in animation and border
    * styling
  */
  &:before
  &:after
    content ''
    position absolute
    left -($load-size / 2)
    top 50%
    border ($load-size / 2) solid $yellow
    border-radius 100%
    margin-top -($load-size / 2)
  /**
  * The top head piece
  */
  &:before
    border-left-color   transparent
    border-bottom-color transparent
    animation           chomp $chomp-speed infinite linear
  /**
    * The bottom head piece
  */
  &:after
    border-top-color   transparent
    border-right-color transparent
    animation          chomp-b $chomp-speed infinite linear


@keyframes travel
  from
    background-position 0 0
  to
    background-position -($track-length) 0

@keyframes chomp
  0%
    transform rotate($chomp-angle * -1deg)
  50%
    transform rotate(($chomp-angle * 2) * -1deg)
  100%
    transform rotate($chomp-angle * -1deg)

@keyframes chomp-b
  0%
    transform rotate($chomp-angle * -1deg)
  50%
    transform rotate(0deg)
  100%
    transform rotate($chomp-angle * -1deg)

/**
  * Base styling
*/
*
  box-sizing border-box
  animation  fadeIn .5s

body
  background-color $black
  text-align       center
  overflow         hidden
  &:after
    content          ''
    border           15px solid $blue
    position         fixed
    top              0
    right            0
    bottom           0
    left             0

@keyframes fadeIn
  from
    opacity 0
  to
    opacity 1
              
            
!

JS

              
                
              
            
!
999px

Console