A Polymer video player element
-
Install the component using Bower:
$ bower install video-player --save
-
Import Web Components' polyfill:
<script src="bower_components/platform/platform.js"></script>
-
Import Custom Element:
<link rel="import" href="bower_components/video-player/dist/video-player.html">
-
Start using it!
<video-player></video-player>
| Attribute | Options | Default | Description |
|---|---|---|---|
width |
integer | 320 |
Width of the video |
height |
integer | 240 |
Height of the video |
theme |
string | red |
Which of the built-in themes to use (red/blue/green) |
In order to run it locally you'll need to fetch some dependencies and a basic server setup.
-
$ [sudo] npm install -g bower grunt-cli
-
Install local dependencies:
$ bower install && npm install -
To test your project, start the development server and open
http://localhost:8000.$ grunt
-
Once you finish developing it, build the distribution files and publish it on Bower.
$ grunt build $ bower register video-player https://github.com/you/video-player
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature - Commit your changes:
git commit -m 'Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request :D
For detailed changelog, check Releases.