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

              
                <html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div id="App">App</div>
<script src="https://fb.me/react-with-addons-15.1.0.js"></script>
<script src="https://fb.me/react-dom-15.1.0.js"></script>
<script src="https://npmcdn.com/aphrodite@0.5.0/dist/aphrodite.umd.js"></script>
</body>
</html>
              
            
!

CSS

              
                
              
            
!

JS

              
                // Import Aphrodite
const {StyleSheet, css} = aphrodite;

// Import our variables from other files
// In this example, we'll just use static values.
const brandBlue = '#1a72a2'; // colors.js
const isMobile = '@media (max-width: 700px)';  // breakpoints.js

// Compose our Styles 
const styles = ( isOpen ) => StyleSheet.create({ 
  wrapper: { 
    padding: '12px 24px',
    width: '300px',
    height: '80px',
    background: '#eee',
    position: 'relative',
    fontFamily: 'sans-serif',
    [isMobile]: { 
      width: '100%',
      padding: '6px 12px',
    },
  },
  username : { 
    fontSize: '1.2em',
    display: 'flex',
    alignItems: 'center',
    color: brandBlue,
    ':before': { 
      content: "' '",
      display: 'inline-block',
      border: `solid 3px ${brandBlue}`,
      height: '24px',
      width: '24px',
      borderRadius: '100%',
      margin: '0 0.5em',
    },
    ':hover': { 
      cursor: 'pointer',
    }
  },
  menu : { 
    padding: '10px',
    position: 'absolute',
    background: '#fff',
    width: '80%',
    boxShadow: '0 1px 4px 0px #ccc',
    display: isOpen ? 'block' : 'none',
  },
  menuItem: { 
    borderBottom: 'solid 1px #ccc',
    ':last-of-type' : { 
       borderBottom: 'none',
    },
  },
});

// Compose our Component. Passing in `isOpen`. 
const UserMenu  = ({ isOpen }) => ( 
  <div className={css(styles().wrapper)} onClick={()=>toggleOpen()}>
    <p className={css(styles().username)}>
      Jon Andrew Davis (click me)
    </p>
    <div className={css(styles(isOpen).menu)}>
      <p className={css(styles().menuItem)}>Preferences</p>
      <p className={css(styles().menuItem)}>Help</p>
      <p className={css(styles().menuItem)}>Sign Out</p>
    </div>
 </div>
);

//////////////////////////////////
// Compose our simple react demo. 
//////////////////////////////////


// This var emulates a store.
// MobX, Redux, or anything else used to track state.
var isOpenStore = false;


// A dispatch-like function to update that store.
// Notice how the `isOpenStore` is a boolean value that is passed into the `isOpen` property. That can be used by the component.
// We need to call a re-render, since this such a basic example.
const toggleOpen = function(){ 
  isOpenStore = !isOpenStore;
  ReactDOM.render( 
    <UserMenu isOpen={isOpenStore} />, 
    document.getElementById("App")
  );
};

// On init. Render our App to an existing <div />.
ReactDOM.render( 
  <UserMenu isOpen={isOpenStore} />, 
  document.getElementById("App")
);


              
            
!
999px

Console