1
0
Fork 0
mirror of https://github.com/xbgmsharp/videojs-rotatezoom synced 2025-10-03 01:39:17 +02:00
No description
Find a file
2016-12-28 10:56:53 -02:00
example docs(examples): moved static video.js source into examples @todo replace with bower --install 2016-09-09 19:27:58 -04:00
src Switch settings and options parameters 2016-06-06 09:22:36 +01:00
.gitignore feat(Bower): added bower.json and basic .gitignore 2016-09-09 19:29:13 -04:00
bower.json feat(Bower): added bower.json and basic .gitignore 2016-09-09 19:29:13 -04:00
LICENSE Add License 2016-09-29 15:35:22 +01:00
README.md Fix typo and added bower install instructions 2016-12-28 10:56:53 -02:00

Video.js Zoom Rotate

A plugin that allows you to set the Zoom level and a rotation for video and poster with Video.js.

Install

Install it via bower with bower i --save videojs-rotatezoom

Using the Plugin

The plugin automatically registers itself when you include videojs.zoomrotate.js in your page:

<script src='videojs.zoomrotate.js'></script>

Once you have your video element created, you can activate the zoomrotate plugin. The plugin take 2 options rotate and zoom. It use the CSS scale property and the rotate property.

video.zoomrotate({
  rotate: 90,
  zoom: 1.5
});

or

data-setup='{ "plugins": { "zoomrotate": { "rotate": "90", "zoom": "1.5" } } }'

Options

    defaults = {
      zoom: 1,
      rotate: 0,
      debug: true
    };

Known Issues

It won't work when using the flash fallback.

Thanks

Thanks to codepo8, https://github.com/codepo8/rotatezoomHTML5video

Licence

The piwigo-videojs plugin for Piwigo is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

See http://www.gnu.org/licenses/gpl.html.