1.0.3 • Published 3 years ago

@sony172/videojs-vz-player v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Viezone Player theme

A repo for Viezone Player theme.

vjs-theme-vz-screenshot

Usage

If you're using CSS modules in JavaScript, you can install the NPM module:

npm install --save video.js @sony172/videojs-vz-player

Then just import the files as you would other CSS.

import 'video.js/dist/video-js.css';

import '@sony172/videojs-vz-player/dist/theme/index.css';

Once you've got the theme pulled in, you can then add the class to your player:

<video id="my-player" class="video-js vjs-theme-vz" ...>

Building these locally

If you want to use the CSS in this repo directly instead of using one of the CDNs or the NPM-hosted version, or just do some development, you'll need to clone the repo and build them.

git clone https://github.com/viezone/vz-player.git
cd vz-player
npm install
npm run build

This will create a dist folder with the post-processed CSS in them, which you can upload right to your site. If you want to develop against these locally, you can run npm run dev to get a local server running a demo of the theme on it.