Insert title here
id="my-player"
class="video-js"
controls
preload="auto"
poster="//vjs.zencdn.net/v/oceans.png"
data-setup=‘{}‘>
var player = videojs(‘my-player‘);
var options = {};
var player = videojs(‘my-player‘, options, function onPlayerReady() {
videojs.log(‘Your player is ready!‘);
// In this context, `this` is the player that was created by Video.js.
this.play();
// How about an event listener?
this.on(‘ended‘, function() {
videojs.log(‘Awww...over so soon?!‘);
});
});
原文:https://www.cnblogs.com/lidabo/p/9003697.html