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

              
                <!-- divs around the video element are for responsive sizing -->
		<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-video-id="4825279519001"
					data-account="1752604059001"
					data-player="B1xXFuBodW"
					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>
	      <script src="https://players.brightcove.net/1752604059001/B1xXFuBodW_default/index.min.js"></script>
	    </div>
    </div>

<!-- This article text block will be displayed over the video background -->
		<div id="article">
			<h1>Flamingos</h1>
				<p>filmed in 2011</p>
				<p><a href="//brightcove.com">original article</a>
				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur porta dictum turpis, eu mollis justo gravida ac.</p>
				<button>Pause</button>
		</div>
              
            
!

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;
  padding-top: 50px;
}
/*
 * 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: .25em;
  right: .25em;
}
h1 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 0;
  letter-spacing: .3rem;
}
/* Style the article's Play/Pause button */
a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  background:rgba(0,0,0,0.5);
  padding: .5rem;
  transition: .6s background;
}
a:hover{
  background:rgba(0,0,0,0.9);
}
#article button {
  display: block;
  width: 80%;
  padding: .4rem;
  border: none;
  margin: 1rem auto;
  font-size: 1.3rem;
  background: rgba(255,255,255,0.23);
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
  transition: .3s background;
}
#article button:hover {
  background: rgba(0,0,0,0.5);
}
              
            
!

JS

              
                videojs.getPlayer('myPlayerID').ready(function() {
  // Get a reference to the player and the Play/Pause button in the article block
  var myPlayer = this,
      pauseButton = document.querySelector("#article button");
  // Uncomment the following code to mute the video in JS instead of in the video element
  // myPlayer.muted(true);

  // +++ Configure video end +++
  // Listen for the ended event and display Play button
  myPlayer.on("ended", function() {
    pauseButton.innerHTML = "Play";
  });

  // +++ Configure the Play/Pause button +++
  // Listen for a click event on the Play/Pause button
  // Alternate between play and pause states
  pauseButton.addEventListener("click", function() {
    if (myPlayer.paused()) {
      myPlayer.play();
      pauseButton.innerHTML = "Pause";
    } else {
      myPlayer.pause();
      pauseButton.innerHTML = "Play";
    }
  });
});
              
            
!
999px

Console