Detects videojs player resize and adds/removes classes.
Resize detection inspired by Daniel Buchner's post.
npm install --save videojs-resize
The npm installation is preferred, but Bower works, too.
bower install --save videojs-resize
You can pass breakpoints as options to the plugin. These are the defaults.
The class is added if player width < breakpoint key
.
player.resize({
breakpoints: {
300: 'vjs-size-tiny',
400: 'vjs-size-small'
}
});
To include videojs-resize on your website or web application, use any of the following methods.
This is the simplest case. Get the script in whatever way you prefer and include the plugin after you include [video.js][videojs], so that the videojs
global is available.
<script src="//path/to/video.min.js"></script>
<script src="//path/to/videojs-resize.min.js"></script>
<script>
var player = videojs('my-video');
player.resize();
</script>
When using with Browserify, install videojs-resize via npm and require
the plugin as you would any other module.
var videojs = require('video.js');
// The actual plugin function is exported by this module, but it is also
// attached to the `Player.prototype`; so, there is no need to assign it
// to a variable.
require('videojs-resize');
var player = videojs('my-video');
player.resize();
When using with RequireJS (or another AMD library), get the script in whatever way you prefer and require
the plugin as you normally would:
require(['video.js', 'videojs-resize'], function(videojs) {
var player = videojs('my-video');
player.resize();
});