UNPKG

videojs-vr

Version:

A plugin to add 360 and VR video support to video.js.

14 lines (9 loc) 326 B
import videojs from 'video.js'; const BigPlayButton = videojs.getComponent('BigPlayButton'); class BigVrPlayButton extends BigPlayButton { buildCSSClass() { return `vjs-big-vr-play-button ${super.buildCSSClass()}`; } } videojs.registerComponent('BigVrPlayButton', BigVrPlayButton); export default BigVrPlayButton;