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

              
                <!--Disclaimer: This CodePen is provided for instructional purposes only. Vidyard cannot support or guarantee any dependencies on third-party code or libraries such as JavaScript, jQuery or CSS-->

<!--Thumbnail Timecode by Chris Broughton, Jan 2020
Designed for a single player on a webpage. Replace PLAYER IMG with your own embed-->

<!-- JQUERY CDN -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- PLAYER JS -->
<script type="text/javascript" async src="https://play.vidyard.com/embed/v4.js"></script>
<!-- PLAYER DIV START -->
<div style="max-width:640px">
<!-- PLAYER IMG -->
<img
 style="width: 100%; margin: auto; display: block;"
 class="vidyard-player-embed"
 src="https://play.vidyard.com/8VgWAuTYZfxErcDgAePuft.jpg"
 data-uuid="8VgWAuTYZfxErcDgAePuft"
 data-v="4"
 data-type="inline"
/>
<!-- PLAYER DIV CLOSE -->
</div>
<!-- STYLE THE TIMECODE BOX -->
<style>
#lengththumbnail {
 display: block;
 position: absolute;
 bottom: 0;
 width: 80px;
 color: white;
 background: black;
 filter: opacity(0.6);
 text-align: center;
 font-size: 26px;
 font-family:sans-serif;
 right:0;
 visibility:hidden;
}
</style>

<!-- DIV FOR THE TIMECODE -->
<div id="lengththumbnail"><div>

<!-- THE MAGIC (add div to player, turn it into minutes, hide it on play, etc -->
<script type="text/javascript"> 
 
window.onVidyardAPI = (vidyardEmbed) => {
vidyardEmbed.api.addReadyListener((_, player) => { 
 
 var video = VidyardV4.players[0];
 var videouuid = video.uuid
 var vlength = video.metadata.length_in_seconds;
 var minutes = Math.floor(vlength / 60);
 var seconds = vlength - minutes * 60;

function str_pad_left(vlength, pad, length) {
 return (new Array(length + 1).join(pad) + vlength).slice(-length);
 }

var finalTime = str_pad_left(minutes, '0', 2) + ':' + str_pad_left(seconds, '0', 2);
 document.getElementById('lengththumbnail').innerHTML = finalTime;


$('#lengththumbnail').appendTo('.vidyard-div-' + videouuid);
 $("#lengththumbnail").css('visibility', 'visible');

video.on('play', function() {
 $("#lengththumbnail").hide();
 });

video.on('playerComplete', function() {
 $("#lengththumbnail").show();
 });
 })
}
</script>
              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console