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="menu">
  <span class="fa fa-twitter fa-2x fa-inverse f-fw hidden"></span>
  <span class="fa fa-facebook fa-2x fa-inverse fa-fw hidden"></span>
  <span class="fa fa-pinterest fa-2x fa-inverse fa-fw hidden"></span>
  <span class="fa fa-bars fa-2x fa-inverse f-fw"></span>
</div>
              
            
!

CSS

              
                body
  background-color: salmon
  
.menu
  position: relative
  span
    position: absolute
    background-color: black
    padding: 15px 10px
    border: 3px solid white
    border-radius: 50%
    transition: all 0.3s ease-in-out 
    &.hidden
      visibility: hidden  
    &:last-child
      padding: 13px 15px
    &:nth-child(1)
      background-color: lightblue
      padding: 15px 15px
      &.show
        transform: rotate(0deg) translate(100px) rotate(0deg)
    &:nth-child(2)
      background-color: darkblue
      &.show
        transform: rotate(45deg) translate(100px) rotate(-45deg)
    &:nth-child(3)
      background-color: red
      &.show
        transform: rotate(90deg) translate(100px) rotate(-90deg)
              
            
!

JS

              
                $(document).ready(function(){
  $('.menu span:last-child').click(function(){
    $('.menu span').not(':last-child').toggleClass('hidden show') ;
  })
})
              
            
!
999px

Console