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 style="position: relative; display: block; max-width: 100%; ">
  <div style="padding-top: 56.25%;">
    <!-- The autoplay and muted attributes have been added to the video element. Also, the controls attribute has been removed. If you want the video to loop continually, you can add the loop attribute.-->
    <video-js id="myPlayerID" 
      data-playlist-id="4450721964001" 
      data-account="1752604059001" 
      data-player="Hyau9PI4z" 
      data-embed="default" 
      data-application-id 
      autoplay 
      muted 
      style="position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; width: 100%; height: 100%;">
      </video-js>

  </div>
</div>

<!-- This article text block will be displayed over the video background -->
<div id="article">
  <h1 id="videoTitle"></h1>
  <p id=videoDescription></p>
</div>

<script src="https://players.brightcove.net/1752604059001/Hyau9PI4z_default/index.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
 */
/* Style the player */
body {
  margin: 0;
  background-color: black;
}
/* Hide the player control bar */
.video-js .vjs-control-bar {
  display: none;
}
/* Remove click events on the player */
.video-js {
  pointer-events: none;
}
/* Style the article container and text */
#article {
  font-family: Agenda-Light, Agenda Light, Agenda, Arial Narrow, sans-serif;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  padding: 2rem;
  width: 33%;
  margin: 2rem;
  float: right;
  font-size: 1.2rem;
  position: absolute;
  top: 30px;
  right: 3em;
}
h1 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-top: 0;
  letter-spacing: 0.3rem;
}

              
            
!

JS

              
                videojs.getPlayer('myPlayerID').ready(function() {
  // Get a reference to the player
  var myPlayer = this,
      counter = 0;

// +++ Set the playlist to repeat, but stop after 2 times through +++
  myPlayer.playlist.repeat(true);

   myPlayer.on('playlistitem',function(){
     counter ++;
     if (counter > 4){
       myPlayer.playlist.repeat(false);
     }
   })

  // +++ Display the title and description +++
  myPlayer.on('loadstart', function() {
    videoTitle.textContent = myPlayer.mediainfo.name;
    videoDescription.textContent = myPlayer.mediainfo.description;
  });
});

              
            
!
999px

Console