
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
videojs-story-view
Advanced tools
VideoJs Story View like Instagram
npm install --save @story-view/videojs-story-view
CDN
<link
rel="stylesheet"
type="text/css"
href="https://cdn.jsdelivr.net/gh/hicay/videojs-story-view@0.1/dist/videojs-story-view.css"
/>
<script src="//path/to/video@7.4.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/hicay/videojs-story-view@0.1/dist/videojs-story-view.min.js"></script>
To include videojs-story-view on your website or web application, use any of the following methods.
<script>
TagThis 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.
LOCAL
<link
rel="stylesheet"
type="text/css"
href="//path/to/videojs-story-view.css"
/>
<script src="//path/to/video.min.js"></script>
<script src="//path/to/videojs-story-view.min.js"></script>
<script>
var player = videojs('my-video');
player.storyView();
</script>
When using with Browserify, install videojs-story-view 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('@story-view/videojs-story-view');
var player = videojs('my-video');
player.storyView();
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', '@story-view/videojs-story-view'], function(videojs) {
var player = videojs('my-video');
player.storyView();
});
MIT. Copyright (c) Salih Caglar Ispirli <caglarispirli@gmail.com>
FAQs
videojs-story-view
We found that videojs-story-view demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.