Socket
Socket
Sign inDemoInstall

videojs-overlay-buttons

Package Overview
Dependencies
24
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    videojs-overlay-buttons

Overlay buttons for videojs player


Version published
Weekly downloads
505
decreased by-20.47%
Maintainers
1
Install size
32.2 MB
Created
Weekly downloads
 

Readme

Source

videojs-overlay-buttons

Touch overlay for player

How overlay looks like

Table of Contents

Installation

npm install --save videojs-overlay-buttons

Options

Default options

{
  seekLeft: {
    handleClick: () => {
      const time = Number(player.currentTime()) - 10;

      player.currentTime(time);
    },
    doubleTap: true,
  },
  play: {
    handleClick: () => {
      if (player.paused()) {
        player.play();
      } else {
        player.pause();
      }
    },
  },
  seekRight: {
    handleClick: () => {
      const time = Number(player.currentTime()) + 10;

      player.currentTime(time);
    },
    doubleTap: true,
  },
  lockButton: false
}
OptionsTypeDescription
handleClickFunctionThis Function will be executed when the button is clicked
doubleTapBooleanIf the holder of the icon is double tapped, execute handleClick option
lockButtonBooleanShow lock button when true, will hide all buttons except lockButton when clicked

Lock button

When lockButton is true

When lockButton: true

When lock button is clicked

Lock button is clicked

This will hide all buttons (also control bar) except lock button

Available buttons

{
  previous: {},
  seekLeft: {},
  play: {},
  seekRight: {},
  next: {}
}

CDN

CSS

Add this to your head tag

<link
  rel="stylesheet"
  href="https://unpkg.com/videojs-overlay-buttons@latest/dist/videojs-overlay-buttons.css"
/>

JS

Add this to bottom your body tag

<script src="https://unpkg.com/videojs-overlay-buttons@latest/dist/videojs-overlay-buttons.min.js"></script>

Usage

To include videojs-overlay-buttons 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-overlay-buttons.min.js"></script>
<script>
  var player = videojs("my-video");

  player.touchOverlay(options);
</script>

Browserify/CommonJS

When using with Browserify, install videojs-overlay-buttons 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-overlay-buttons");

var player = videojs("my-video");

player.touchOverlay(options);

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-overlay-buttons"], function (videojs) {
  var player = videojs("my-video");

  player.touchOverlay(options);
});

License

MIT. Copyright (c) hoangvu12 <68330291+hoangvu12@users.noreply.github.com>

Keywords

FAQs

Last updated on 10 May 2021

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc