@guzzj/clappr-nerd-stats
v2.0.7
Published
Clappr UI plugin to show clappr-stats info
Downloads
6
Readme
Clappr Nerd Stats
A Clappr UI plugin to show statistics provided by clappr-stats.
You can see a working demo in JSFiddle or CodePen.
Usage
You can use it from JSDelivr (https://cdn.jsdelivr.net/npm/clappr-nerd-stats/dist/clappr-nerd-stats.min.js
) or as
a NPM package.
<head>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clappr/dist/clappr.min.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clappr-stats/dist/clappr-stats.min.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clappr-nerd-stats/dist/clappr-nerd-stats.min.js"></script>
</head>
<body>
<div id="player"></div>
<script>
window.player = new Clappr.Player({
parentId: '#player',
plugins: [ClapprNerdStats, ClapprStats],
source: 'http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4',
height: 607.5,
width: 1080,
clapprNerdStats: {
// Optional: provide multiple combination of keyboard shortcuts to show/hide the statistics.
// For reference, visit: https://github.com/ccampbell/mousetrap.
// Default: ['command+shift+s', 'ctrl+shift+s']
shortcut: ['command+shift+s', 'ctrl+shift+s'],
// Optional: position of the icon to show/hide the statistics.
// Values: 'top-right', 'top-left', 'bottom-right', 'bottom-left', 'none'
// Default: 'top-right'
iconPosition: 'top-right'
}
})
</script>
</body>
Now, just press <ctrl+shift+s>
or click in the info icon to show/hide the stats.
Note that this plugin depends on clappr-stats
. So, you must include both ClapprNerdStats
and
ClapprStats
in plugins list above.