videojs-newoverlay
Dynamic Overlay on Video For Education System
Video Üzerine Text Vb Dinamik Yer Değiştirme
Table of Contents
Installation
npm install --save videojs-dynamic-overlay
Usage
Sample Image : https://prnt.sc/gwejew
To include videojs-newoverlay on your website or web application, use any of the following methods.
<script>
Tag
This is the simplest case. Get the script in whatever way you prefer and include the plugin after you include video.js, so that the videojs
global is available.
<script src="//path/to/video.min.js"></script>
<script src="//path/to/videojs-newoverlay.min.js"></script>
<script>
var player = videojs('my-video');
player.newoverlay();
################ OR ###############
player.newoverlay({
contentOfOverlay:"Sample Content",
changeDuration:1000
});
</script>
<style>
.vjs-emre{
z-index:9999;
color:black;
background-color:brown;
font-size:20px;
position:absolute;
right:20px;
}
</style>
Browserify/CommonJS
When using with Browserify, install videojs-newoverlay via npm and require
the plugin as you would any other module.
var videojs = require('video.js');
require('videojs-newoverlay');
var player = videojs('my-video');
player.newoverlay();
################ OR ###############
player.newoverlay({
contentOfOverlay:"Sample Content",
changeDuration:1000
});
RequireJS/AMD
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-newoverlay'], function(videojs) {
var player = videojs('my-video');
player.newoverlay();
});
License
Apache-2.0. Copyright (c) Emre Karatasoglu <emre.karatasoglu@hotmail.com>