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

              
                <!-- Styles for the picture-in-picture plugin -->
<link href="//players.brightcove.net/videojs-pip/1/videojs-pip.css" rel="stylesheet">

<!-- Container to hold the text and video player -->
<div class="wrap">
  <h1>Picture-in-Picture Plugin</h1>
  <p>
    After starting video playback, scroll down the page to cause the player to jump out of the content, but not cause the content to re-flow. Scrolling room is available both vertically and horizontally.
  </p>
  
  <!-- The picture-in-picture container. This is required! -->
  <div class="vjs-pip-container">
    <!-- The player embed code -->
    <video-js id="myPlayerID" 
              data-account="1752604059001"
              data-player="Zbggd6KGf" 
              data-embed="default" 
              controls="" 
              data-video-id="5701202551001"
              data-playlist-id="" 
              data-application-id=""
              width="560" height="315"></video-js>
    <script src="https://players.brightcove.net/1752604059001/Zbggd6KGf_default/index.min.js"></script>
  </div>
  
  <p>
    Lorem ipsum dolor sit amet, lectus ac porttitor mauris sit nec cupidatat, lobortis tempor lacus dui id, sit amet, fringilla mi pharetra volutpat mauris. Urna in magnis neque nunc, varius suspendisse erat nullam nibh sed a, tincidunt scelerisque magnis ac tortor rutrum, eget lacus urna porta, cras vel. Enim commodo wisi bibendum ornare ullamcorper metus, mauris venenatis nulla neque suspendisse, orci odio officia, eget nunc aenean. 
  </p>
  <p>
    Posuere a pellentesque praesent wisi, pede feugiat lectus egestas eget, mattis condimentum elit, vivamus amet vestibulum egestas cras donec fusce, lectus at. Quisque torquent, nulla eros, et suscipit elit, gravida consequat diam cras turpis mauris nam. Vivamus varius amet cursus elit, possimus donec arcu luctus. Libero dapibus nunc sapien.
  </p>
</div>

<!-- Script for the picture-in-picture plugin -->
<script src="//players.brightcove.net/videojs-pip/2/videojs-pip.min.js"></script>
              
            
!

CSS

              
                /* * The body style is just for the
 * background color of the codepen.
 * Do not include in your code.
 */
body {
  background-color: #111;
  color: #fff;
}
/*
 * Styles essential to the sample
 * are below
 */
/* Set the body size and wrap the text */
body {
  margin: 20px;
  min-height: 1200px;
  min-width: 1200px;
}
.wrap {
  width: 600px;
}
              
            
!

JS

              
                videojs.getPlayer('myPlayerID').ready(function() {
  // When the player is ready, get a reference to it
  var myPlayer = this;
  // Initialize the picture-in-picture plugin
  myPlayer.pip();
});
              
            
!
999px

Console