Compare commits
19 Commits
Author | SHA1 | Date | |
---|---|---|---|
7c5f38311b | |||
e568bc9c8d | |||
c2c4172634 | |||
73de5b5773 | |||
aa1fed0b16 | |||
22331ae9f1 | |||
8b436276bf | |||
c61db87fd6 | |||
388cb4df39 | |||
9feffb2972 | |||
acea5cdb24 | |||
55ed577b6a | |||
20b206a161 | |||
9c028a0ecc | |||
b677c3d7ad | |||
aa6bc2df2f | |||
a16579fd21 | |||
ae5a816df1 | |||
1532f2ab23 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -4,3 +4,4 @@ node_modules
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
aws.json
|
aws.json
|
||||||
docs/index.dev.html
|
docs/index.dev.html
|
||||||
|
*.mp4
|
||||||
|
44
changelog.md
44
changelog.md
@ -1,17 +1,51 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v1.1.1
|
||||||
|
- Fix for unsupported browser handling
|
||||||
|
- Fix for config.controls having no effect
|
||||||
|
|
||||||
|
## v1.1.0
|
||||||
|
- Added config option to set which controls are shown (if using the default controls html) and better handling of missing controls
|
||||||
|
|
||||||
|
## v1.0.31
|
||||||
|
- Display duration on metadataloaded
|
||||||
|
|
||||||
|
## v1.0.30
|
||||||
|
- Fixed bug with media longer than 60 minutes (Fixes #69)
|
||||||
|
|
||||||
|
## v1.0.29
|
||||||
|
- Added option to hide controls on fullscreen (default `true`) while palying, after 1s. Pause, mouse hover on progress, or focus on a child control re-shows the controls. On touch a tap of the video (which plays/pauses the video by default) is required. (Fixes #47)
|
||||||
|
- Fixed a bug with caption toggle in 1.0.28
|
||||||
|
|
||||||
|
## v1.0.28
|
||||||
|
- Added API support for browsers that don't have full plyr support (pretty much <=IE9 and `<video>` on iPhone/iPod)
|
||||||
|
|
||||||
|
## v1.0.27
|
||||||
|
- Keyboard accessibility improvements (Fixes #66)
|
||||||
|
|
||||||
|
## v1.0.26
|
||||||
|
- Fixes for SASS (cheers @brunowego)
|
||||||
|
- Indentation reset to 4 spaces
|
||||||
|
|
||||||
|
## v1.0.25
|
||||||
|
- Fixes for iOS volume controls (hidden)
|
||||||
|
- Classnames for left/right controls changed
|
||||||
|
|
||||||
|
## v1.0.24
|
||||||
|
- Added tooltip option to display labels as tooltips (Fixes #50)
|
||||||
|
|
||||||
## v1.0.23
|
## v1.0.23
|
||||||
- Handling loading states in the UI
|
- Handling loading states in the UI (Fixes #36)
|
||||||
|
|
||||||
## v1.0.22
|
## v1.0.22
|
||||||
- Added support() API method for checking mimetype support
|
- Added support() API method for checking mimetype support
|
||||||
- Added source() API method for setting media source(s)
|
- Added source() API method for setting media source(s) (Fixes #44)
|
||||||
- Added poster() API method for setting poster source
|
- Added poster() API method for setting poster source
|
||||||
- Refactored captions logic for manual captions
|
- Refactored captions logic for manual captions
|
||||||
|
|
||||||
## v1.0.21
|
## v1.0.21
|
||||||
- Added an <input type="range"> for seeking to improve experience (and support dragging)
|
- Added an <input type="range"> for seeking to improve experience (and support dragging) (Fixes #40, #42)
|
||||||
- Icons for restart and captions improved (and some IDs changed)
|
- Icons for restart and captions improved (and some IDs changed) (Fixes #49)
|
||||||
|
|
||||||
## v1.0.20
|
## v1.0.20
|
||||||
- Default controls included (Fixes #45)
|
- Default controls included (Fixes #45)
|
||||||
@ -20,7 +54,7 @@
|
|||||||
- License changed to MIT
|
- License changed to MIT
|
||||||
|
|
||||||
## v1.0.19
|
## v1.0.19
|
||||||
- Fixed firefox fullscreen issue (#38)
|
- Fixed firefox fullscreen issue (Fixes #38)
|
||||||
|
|
||||||
## v1.0.18
|
## v1.0.18
|
||||||
- Added CDN references
|
- Added CDN references
|
||||||
|
24
controls.md
24
controls.md
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
This is the markup that is rendered for the Plyr controls. You can use the default controls or provide a customized version of markup based on your needs.
|
This is the markup that is rendered for the Plyr controls. You can use the default controls or provide a customized version of markup based on your needs.
|
||||||
|
|
||||||
The demo Plyr setup uses a Hogan template. This purely to allow for localization at a later date. Check out `controls.html` in `/src/templates` to get an idea of how the default html is structured. Alternatively check out the `plyr.js` source.
|
The demo Plyr setup uses a Hogan template. This purely to allow for localization at a later date. Check out `controls.html` in `/src/templates` to get an idea of how the default html is structured.
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
@ -13,11 +13,11 @@ You need to add several placeholders to your html template that are replaced whe
|
|||||||
- `{id}` - the dynamically generated ID for the player (for form controls)
|
- `{id}` - the dynamically generated ID for the player (for form controls)
|
||||||
- `{seektime}` - the seek time specified in options for fast forward and rewind
|
- `{seektime}` - the seek time specified in options for fast forward and rewind
|
||||||
|
|
||||||
Currently all buttons and inputs need to be present for Plyr to work but later we'll make it more dynamic so if you omit a button or input, it'll still work.
|
You can include only the controls you need when specifying custom html.
|
||||||
|
|
||||||
## Default
|
## Example
|
||||||
|
|
||||||
This is the default `html` option from `plyr.js`.
|
This is an example `html` option with all controls.
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
["<div class='player-controls'>",
|
["<div class='player-controls'>",
|
||||||
@ -31,14 +31,14 @@ This is the default `html` option from `plyr.js`.
|
|||||||
"<span>0</span>% buffered",
|
"<span>0</span>% buffered",
|
||||||
"</progress>",
|
"</progress>",
|
||||||
"</div>",
|
"</div>",
|
||||||
"<span class='player-controls-playback'>",
|
"<span class='player-controls-left'>",
|
||||||
"<button type='button' data-player='restart'>",
|
"<button type='button' data-player='restart'>",
|
||||||
"<svg><use xlink:href='#icon-restart'></use></svg>",
|
"<svg><use xlink:href='#icon-restart'></use></svg>",
|
||||||
"<span class='sr-only'>Restart</span>",
|
"<span class='sr-only'>Restart</span>",
|
||||||
"</button>",
|
"</button>",
|
||||||
"<button type='button' data-player='rewind'>",
|
"<button type='button' data-player='rewind'>",
|
||||||
"<svg><use xlink:href='#icon-rewind'></use></svg>",
|
"<svg><use xlink:href='#icon-rewind'></use></svg>",
|
||||||
"<span class='sr-only'>Rewind {seektime} seconds</span>",
|
"<span class='sr-only'>Rewind {seektime} secs</span>",
|
||||||
"</button>",
|
"</button>",
|
||||||
"<button type='button' data-player='play'>",
|
"<button type='button' data-player='play'>",
|
||||||
"<svg><use xlink:href='#icon-play'></use></svg>",
|
"<svg><use xlink:href='#icon-play'></use></svg>",
|
||||||
@ -50,14 +50,18 @@ This is the default `html` option from `plyr.js`.
|
|||||||
"</button>",
|
"</button>",
|
||||||
"<button type='button' data-player='fast-forward'>",
|
"<button type='button' data-player='fast-forward'>",
|
||||||
"<svg><use xlink:href='#icon-fast-forward'></use></svg>",
|
"<svg><use xlink:href='#icon-fast-forward'></use></svg>",
|
||||||
"<span class='sr-only'>Fast forward {seektime} seconds</span>",
|
"<span class='sr-only'>Forward {seektime} secs</span>",
|
||||||
"</button>",
|
"</button>",
|
||||||
"<span class='player-time'>",
|
"<span class='player-time'>",
|
||||||
"<span class='sr-only'>Time</span>",
|
"<span class='sr-only'>Current time</span>",
|
||||||
|
"<span class='player-current-time'>00:00</span>",
|
||||||
|
"</span>",
|
||||||
|
"<span class='player-time'>",
|
||||||
|
"<span class='sr-only'>Duration</span>",
|
||||||
"<span class='player-duration'>00:00</span>",
|
"<span class='player-duration'>00:00</span>",
|
||||||
"</span>",
|
"</span>",
|
||||||
"</span>",
|
"</span>",
|
||||||
"<span class='player-controls-sound'>",
|
"<span class='player-controls-right'>",
|
||||||
"<input class='inverted sr-only' id='mute{id}' type='checkbox' data-player='mute'>",
|
"<input class='inverted sr-only' id='mute{id}' type='checkbox' data-player='mute'>",
|
||||||
"<label id='mute{id}' for='mute{id}'>",
|
"<label id='mute{id}' for='mute{id}'>",
|
||||||
"<svg class='icon-muted'><use xlink:href='#icon-muted'></use></svg>",
|
"<svg class='icon-muted'><use xlink:href='#icon-muted'></use></svg>",
|
||||||
@ -75,7 +79,7 @@ This is the default `html` option from `plyr.js`.
|
|||||||
"<button type='button' data-player='fullscreen'>",
|
"<button type='button' data-player='fullscreen'>",
|
||||||
"<svg class='icon-exit-fullscreen'><use xlink:href='#icon-exit-fullscreen'></use></svg>",
|
"<svg class='icon-exit-fullscreen'><use xlink:href='#icon-exit-fullscreen'></use></svg>",
|
||||||
"<svg><use xlink:href='#icon-enter-fullscreen'></use></svg>",
|
"<svg><use xlink:href='#icon-enter-fullscreen'></use></svg>",
|
||||||
"<span class='sr-only'>Toggle fullscreen</span>",
|
"<span class='sr-only'>Toggle Fullscreen</span>",
|
||||||
"</button>",
|
"</button>",
|
||||||
"</span>",
|
"</span>",
|
||||||
"</div>"].join("\n");
|
"</div>"].join("\n");
|
||||||
|
2
dist/plyr.css
vendored
2
dist/plyr.css
vendored
File diff suppressed because one or more lines are too long
2
dist/plyr.js
vendored
2
dist/plyr.js
vendored
File diff suppressed because one or more lines are too long
2
docs/dist/docs.css
vendored
2
docs/dist/docs.css
vendored
@ -1 +1 @@
|
|||||||
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}hr{box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}@font-face{font-family:Avenir;src:url(//cdn.plyr.io/fonts/avenir-medium.woff2) format("woff2"),url(//cdn.plyr.io/fonts/avenir-medium.woff) format("woff"),url(//cdn.plyr.io/fonts/avenir-medium.ttf) format("truetype");font-style:normal;font-weight:400}@font-face{font-family:Avenir;src:url(//cdn.plyr.io/fonts/avenir-bold.woff2) format("woff2"),url(//cdn.plyr.io/fonts/avenir-bold.woff) format("woff"),url(//cdn.plyr.io/fonts/avenir-bold.ttf) format("truetype");font-style:normal;font-weight:600}*,::after,::before{box-sizing:border-box}body{font-family:Avenir,"Helvetica Neue",Helvetica,Arial,sans-serif;background:#fff;line-height:1.5;text-align:center;color:#6D797F}.error body,html.error{height:100%}.error body{width:100%;display:table;table-layout:fixed}.error main{display:table-cell;width:100%;vertical-align:middle}h1,h2{letter-spacing:-.025em;color:#2E3C44;margin:0 0 10px;line-height:1.2;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}h1{font-size:64px;font-size:4rem;color:#3498DB}p,small{margin:0 0 20px}small{display:block;padding:0 10px;font-size:14px;font-size:.9rem}header{padding:20px;margin-bottom:20px}header p{font-size:18px;font-size:1.1rem}@media (min-width:560px){header{padding-top:60px;padding-bottom:60px}}section{padding-bottom:20px}@media (min-width:560px){section{padding-bottom:40px}}a{text-decoration:none;color:#3498db;border-bottom:1px solid currentColor;transition:all .3s ease}a:focus,a:hover{color:#000}a:focus{outline:#343f4a dotted thin;outline-offset:1px}a.logo{border:0}.btn{display:inline-block;padding:10px 30px;background:#3498db;border:0;color:#fff;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-weight:600;border-radius:3px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:hover{color:#fff;background:#258cd1}.example-audio .player{max-width:480px}.example-video .player{max-width:1200px}.example-audio .player,.example-video .player{margin:0 auto 20px}.example-audio .player-fullscreen,.example-audio .player.fullscreen-active,.example-video .player-fullscreen,.example-video .player.fullscreen-active{max-width:none}footer{margin-bottom:20px}footer p{margin-bottom:10px}
|
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}hr{box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}@font-face{font-family:Avenir;src:url(//cdn.plyr.io/fonts/avenir-medium.woff2) format("woff2"),url(//cdn.plyr.io/fonts/avenir-medium.woff) format("woff"),url(//cdn.plyr.io/fonts/avenir-medium.ttf) format("truetype");font-style:normal;font-weight:400}@font-face{font-family:Avenir;src:url(//cdn.plyr.io/fonts/avenir-bold.woff2) format("woff2"),url(//cdn.plyr.io/fonts/avenir-bold.woff) format("woff"),url(//cdn.plyr.io/fonts/avenir-bold.ttf) format("truetype");font-style:normal;font-weight:600}*,::after,::before{box-sizing:border-box}body{font-family:Avenir,"Helvetica Neue",Helvetica,Arial,sans-serif;background:#fff;line-height:1.5;text-align:center;color:#6D797F}.error body,html.error{height:100%}.error body{width:100%;display:table;table-layout:fixed}.error main{display:table-cell;width:100%;vertical-align:middle}h1,h2{letter-spacing:-.025em;color:#2E3C44;margin:0 0 10px;line-height:1.2;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}h1{font-size:64px;font-size:4rem;color:#3498DB}p,small{margin:0 0 20px}small{display:block;padding:0 10px;font-size:14px;font-size:.9rem}header{padding:20px;margin-bottom:20px}header p{font-size:18px;font-size:1.1rem}@media (min-width:560px){header{padding-top:60px;padding-bottom:60px}}section{padding-bottom:20px}@media (min-width:560px){section{padding-bottom:40px}}a{text-decoration:none;color:#3498db;border-bottom:1px solid currentColor;transition:all .3s ease}a:focus,a:hover{color:#000}a:focus{outline:#343f4a dotted thin;outline-offset:1px}a.logo{border:0}.btn{display:inline-block;padding:10px 30px;background:#3498db;border:0;color:#fff;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-weight:600;border-radius:3px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:hover{color:#fff;background:#258cd1}.example-audio .player{max-width:520px}.example-video .player{max-width:1200px}.example-audio .player,.example-video .player{margin:0 auto 20px}.example-audio .player-fullscreen,.example-audio .player.fullscreen-active,.example-video .player-fullscreen,.example-video .player.fullscreen-active{max-width:none}footer{margin-bottom:20px}footer p{margin-bottom:10px}
|
2
docs/dist/docs.js
vendored
2
docs/dist/docs.js
vendored
File diff suppressed because one or more lines are too long
2
docs/dist/templates.js
vendored
2
docs/dist/templates.js
vendored
@ -1,2 +1,2 @@
|
|||||||
var templates = {};
|
var templates = {};
|
||||||
templates['controls'] = new Hogan.Template({code: function (c,p,i) { var t=this;t.b(i=i||"");t.b("<div class=\"player-controls\">");t.b("\n" + i);t.b(" <div class=\"player-progress\">");t.b("\n" + i);t.b(" <label for=\"seek{id}\" class=\"sr-only\">Seek</label>");t.b("\n" + i);t.b(" <input id=\"seek{id}\" class=\"player-progress-seek\" type=\"range\" min=\"0\" max=\"100\" step=\"0.5\" value=\"0\" data-player=\"seek\">");t.b("\n" + i);t.b(" <progress class=\"player-progress-played\" max=\"100\" value=\"0\">");t.b("\n" + i);t.b(" <span>0</span>% played");t.b("\n" + i);t.b(" </progress>");t.b("\n" + i);t.b(" <progress class=\"player-progress-buffer\" max=\"100\" value=\"0\">");t.b("\n" + i);t.b(" <span>0</span>% buffered");t.b("\n" + i);t.b(" </progress>");t.b("\n" + i);t.b(" </div>");t.b("\n" + i);t.b(" <span class=\"player-controls-playback\">");t.b("\n" + i);t.b(" <button type=\"button\" data-player=\"restart\">");t.b("\n" + i);t.b(" <svg><use xlink:href=\"#icon-restart\"></use></svg>");t.b("\n" + i);t.b(" <span class=\"sr-only\">Restart</span>");t.b("\n" + i);t.b(" </button>");t.b("\n" + i);t.b(" <button type=\"button\" data-player=\"rewind\">");t.b("\n" + i);t.b(" <svg><use xlink:href=\"#icon-rewind\"></use></svg>");t.b("\n" + i);t.b(" <span class=\"sr-only\">Rewind {seektime} seconds</span>");t.b("\n" + i);t.b(" </button>");t.b("\n" + i);t.b(" <button type=\"button\" data-player=\"play\">");t.b("\n" + i);t.b(" <svg><use xlink:href=\"#icon-play\"></use></svg>");t.b("\n" + i);t.b(" <span class=\"sr-only\">Play</span>");t.b("\n" + i);t.b(" </button>");t.b("\n" + i);t.b(" <button type=\"button\" data-player=\"pause\">");t.b("\n" + i);t.b(" <svg><use xlink:href=\"#icon-pause\"></use></svg>");t.b("\n" + i);t.b(" <span class=\"sr-only\">Pause</span>");t.b("\n" + i);t.b(" </button>");t.b("\n" + i);t.b(" <button type=\"button\" data-player=\"fast-forward\">");t.b("\n" + i);t.b(" <svg><use xlink:href=\"#icon-fast-forward\"></use></svg>");t.b("\n" + i);t.b(" <span class=\"sr-only\">Fast forward {seektime} seconds</span>");t.b("\n" + i);t.b(" </button>");t.b("\n" + i);t.b(" <span class=\"player-time\">");t.b("\n" + i);t.b(" <span class=\"sr-only\">Time</span>");t.b("\n" + i);t.b(" <span class=\"player-duration\">00:00</span>");t.b("\n" + i);t.b(" </span>");t.b("\n" + i);t.b(" </span>");t.b("\n" + i);t.b(" <span class=\"player-controls-sound\">");t.b("\n" + i);t.b(" <input class=\"inverted sr-only\" id=\"mute{id}\" type=\"checkbox\" data-player=\"mute\">");t.b("\n" + i);t.b(" <label id=\"mute{id}\" for=\"mute{id}\">");t.b("\n" + i);t.b(" <svg class=\"icon-muted\"><use xlink:href=\"#icon-muted\"></use></svg>");t.b("\n" + i);t.b(" <svg><use xlink:href=\"#icon-volume\"></use></svg>");t.b("\n" + i);t.b(" <span class=\"sr-only\">Toggle Mute</span>");t.b("\n" + i);t.b(" </label>");t.b("\n");t.b("\n" + i);t.b(" <label for=\"volume{id}\" class=\"sr-only\">Volume</label>");t.b("\n" + i);t.b(" <input id=\"volume{id}\" class=\"player-volume\" type=\"range\" min=\"0\" max=\"10\" step=\"0.5\" value=\"0\" data-player=\"volume\">");t.b("\n");t.b("\n" + i);t.b(" <input class=\"sr-only\" id=\"captions{id}\" type=\"checkbox\" data-player=\"captions\">");t.b("\n" + i);t.b(" <label for=\"captions{id}\">");t.b("\n" + i);t.b(" <svg class=\"icon-captions-on\"><use xlink:href=\"#icon-captions-on\"></use></svg>");t.b("\n" + i);t.b(" <svg><use xlink:href=\"#icon-captions-off\"></use></svg>");t.b("\n" + i);t.b(" <span class=\"sr-only\">Toggle Captions</span>");t.b("\n" + i);t.b(" </label>");t.b("\n");t.b("\n" + i);t.b(" <button type=\"button\" data-player=\"fullscreen\">");t.b("\n" + i);t.b(" <svg class=\"icon-exit-fullscreen\"><use xlink:href=\"#icon-exit-fullscreen\"></use></svg>");t.b("\n" + i);t.b(" <svg><use xlink:href=\"#icon-enter-fullscreen\"></use></svg>");t.b("\n" + i);t.b(" <span class=\"sr-only\">Toggle fullscreen</span>");t.b("\n" + i);t.b(" </button>");t.b("\n" + i);t.b(" </span>");t.b("\n" + i);t.b("</div>");return t.fl(); },partials: {}, subs: { }});
|
templates['controls'] = new Hogan.Template({code: function (c,p,i) { var t=this;t.b(i=i||"");t.b("<div class=\"player-controls\">");t.b("\n" + i);t.b(" <div class=\"player-progress\">");t.b("\n" + i);t.b(" <label for=\"seek{id}\" class=\"sr-only\">Seek</label>");t.b("\n" + i);t.b(" <input id=\"seek{id}\" class=\"player-progress-seek\" type=\"range\" min=\"0\" max=\"100\" step=\"0.5\" value=\"0\" data-player=\"seek\">");t.b("\n" + i);t.b(" <progress class=\"player-progress-played\" max=\"100\" value=\"0\">");t.b("\n" + i);t.b(" <span>0</span>% played");t.b("\n" + i);t.b(" </progress>");t.b("\n" + i);t.b(" <progress class=\"player-progress-buffer\" max=\"100\" value=\"0\">");t.b("\n" + i);t.b(" <span>0</span>% buffered");t.b("\n" + i);t.b(" </progress>");t.b("\n" + i);t.b(" </div>");t.b("\n" + i);t.b(" <span class=\"player-controls-left\">");t.b("\n" + i);t.b(" <button type=\"button\" data-player=\"restart\">");t.b("\n" + i);t.b(" <svg><use xlink:href=\"#icon-restart\"></use></svg>");t.b("\n" + i);t.b(" <span class=\"sr-only\">Restart</span>");t.b("\n" + i);t.b(" </button>");t.b("\n" + i);t.b(" <button type=\"button\" data-player=\"rewind\">");t.b("\n" + i);t.b(" <svg><use xlink:href=\"#icon-rewind\"></use></svg>");t.b("\n" + i);t.b(" <span class=\"sr-only\">Rewind {seektime} secs</span>");t.b("\n" + i);t.b(" </button>");t.b("\n" + i);t.b(" <button type=\"button\" data-player=\"play\">");t.b("\n" + i);t.b(" <svg><use xlink:href=\"#icon-play\"></use></svg>");t.b("\n" + i);t.b(" <span class=\"sr-only\">Play</span>");t.b("\n" + i);t.b(" </button>");t.b("\n" + i);t.b(" <button type=\"button\" data-player=\"pause\">");t.b("\n" + i);t.b(" <svg><use xlink:href=\"#icon-pause\"></use></svg>");t.b("\n" + i);t.b(" <span class=\"sr-only\">Pause</span>");t.b("\n" + i);t.b(" </button>");t.b("\n" + i);t.b(" <button type=\"button\" data-player=\"fast-forward\">");t.b("\n" + i);t.b(" <svg><use xlink:href=\"#icon-fast-forward\"></use></svg>");t.b("\n" + i);t.b(" <span class=\"sr-only\">Forward {seektime} secs</span>");t.b("\n" + i);t.b(" </button>");t.b("\n" + i);t.b(" <span class=\"player-time\">");t.b("\n" + i);t.b(" <span class=\"sr-only\">Current time</span>");t.b("\n" + i);t.b(" <span class=\"player-current-time\">00:00</span>");t.b("\n" + i);t.b(" </span>");t.b("\n" + i);t.b(" <span class=\"player-time\">");t.b("\n" + i);t.b(" <span class=\"sr-only\">Duration</span>");t.b("\n" + i);t.b(" <span class=\"player-duration\">00:00</span>");t.b("\n" + i);t.b(" </span>");t.b("\n" + i);t.b(" </span>");t.b("\n" + i);t.b(" <span class=\"player-controls-right\">");t.b("\n" + i);t.b(" <input class=\"inverted sr-only\" id=\"mute{id}\" type=\"checkbox\" data-player=\"mute\">");t.b("\n" + i);t.b(" <label id=\"mute{id}\" for=\"mute{id}\">");t.b("\n" + i);t.b(" <svg class=\"icon-muted\"><use xlink:href=\"#icon-muted\"></use></svg>");t.b("\n" + i);t.b(" <svg><use xlink:href=\"#icon-volume\"></use></svg>");t.b("\n" + i);t.b(" <span class=\"sr-only\">Toggle Mute</span>");t.b("\n" + i);t.b(" </label>");t.b("\n");t.b("\n" + i);t.b(" <label for=\"volume{id}\" class=\"sr-only\">Volume</label>");t.b("\n" + i);t.b(" <input id=\"volume{id}\" class=\"player-volume\" type=\"range\" min=\"0\" max=\"10\" step=\"0.5\" value=\"0\" data-player=\"volume\">");t.b("\n");t.b("\n" + i);t.b(" <input class=\"sr-only\" id=\"captions{id}\" type=\"checkbox\" data-player=\"captions\">");t.b("\n" + i);t.b(" <label for=\"captions{id}\">");t.b("\n" + i);t.b(" <svg class=\"icon-captions-on\"><use xlink:href=\"#icon-captions-on\"></use></svg>");t.b("\n" + i);t.b(" <svg><use xlink:href=\"#icon-captions-off\"></use></svg>");t.b("\n" + i);t.b(" <span class=\"sr-only\">Toggle Captions</span>");t.b("\n" + i);t.b(" </label>");t.b("\n");t.b("\n" + i);t.b(" <button type=\"button\" data-player=\"fullscreen\">");t.b("\n" + i);t.b(" <svg class=\"icon-exit-fullscreen\"><use xlink:href=\"#icon-exit-fullscreen\"></use></svg>");t.b("\n" + i);t.b(" <svg><use xlink:href=\"#icon-enter-fullscreen\"></use></svg>");t.b("\n" + i);t.b(" <span class=\"sr-only\">Toggle Fullscreen</span>");t.b("\n" + i);t.b(" </button>");t.b("\n" + i);t.b(" </span>");t.b("\n" + i);t.b("</div>");return t.fl(); },partials: {}, subs: { }});
|
@ -6,7 +6,7 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
<!-- Docs styles -->
|
<!-- Docs styles -->
|
||||||
<link rel="stylesheet" href="//cdn.plyr.io/1.0.23/docs.css">
|
<link rel="stylesheet" href="//cdn.plyr.io/1.1.1/docs.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<main>
|
<main>
|
||||||
|
@ -8,10 +8,10 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
<!-- Styles -->
|
<!-- Styles -->
|
||||||
<link rel="stylesheet" href="//cdn.plyr.io/1.0.23/plyr.css">
|
<link rel="stylesheet" href="//cdn.plyr.io/1.1.1/plyr.css">
|
||||||
|
|
||||||
<!-- Docs styles -->
|
<!-- Docs styles -->
|
||||||
<link rel="stylesheet" href="//cdn.plyr.io/1.0.23/docs.css">
|
<link rel="stylesheet" href="//cdn.plyr.io/1.1.1/docs.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
@ -67,13 +67,29 @@
|
|||||||
<!-- Load SVG defs -->
|
<!-- Load SVG defs -->
|
||||||
<!-- You should bundle all SVG/Icons into one file using a build tool such as gulp and svg store -->
|
<!-- You should bundle all SVG/Icons into one file using a build tool such as gulp and svg store -->
|
||||||
<script>
|
<script>
|
||||||
(function(d,p){var a=new XMLHttpRequest(),b=d.body;a.open("GET",p,!0);a.send();a.onload=function(){var c=d.createElement("div");c.style.display="none";c.innerHTML=a.responseText;b.insertBefore(c,b.childNodes[0])}})(document,"//cdn.plyr.io/1.0.23/sprite.svg");
|
(function(d, u){
|
||||||
|
var a = new XMLHttpRequest(),
|
||||||
|
b = d.body;
|
||||||
|
|
||||||
|
// Check for CORS support
|
||||||
|
// If you're loading from same domain, you can remove the if statement
|
||||||
|
if("withCredentials" in a) {
|
||||||
|
a.open("GET", u, true);
|
||||||
|
a.send();
|
||||||
|
a.onload = function(){
|
||||||
|
var c = d.createElement("div");
|
||||||
|
c.style.display="none";
|
||||||
|
c.innerHTML = a.responseText;
|
||||||
|
b.insertBefore(c, b.childNodes[0]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})(document, "https://cdn.plyr.io/1.1.1/sprite.svg");
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<!-- Plyr core script -->
|
<!-- Plyr core script -->
|
||||||
<script src="//cdn.plyr.io/1.0.23/plyr.js"></script>
|
<script src="//cdn.plyr.io/1.1.1/plyr.js"></script>
|
||||||
|
|
||||||
<!-- Docs script -->
|
<!-- Docs script -->
|
||||||
<script src="//cdn.plyr.io/1.0.23/docs.js"></script>
|
<script src="//cdn.plyr.io/1.1.1/docs.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
@ -139,7 +139,7 @@ a {
|
|||||||
|
|
||||||
// Players
|
// Players
|
||||||
.example-audio .player {
|
.example-audio .player {
|
||||||
max-width: 480px;
|
max-width: 520px;
|
||||||
}
|
}
|
||||||
.example-video .player {
|
.example-video .player {
|
||||||
max-width: 1200px;
|
max-width: 1200px;
|
||||||
|
@ -9,14 +9,14 @@
|
|||||||
<span>0</span>% buffered
|
<span>0</span>% buffered
|
||||||
</progress>
|
</progress>
|
||||||
</div>
|
</div>
|
||||||
<span class="player-controls-playback">
|
<span class="player-controls-left">
|
||||||
<button type="button" data-player="restart">
|
<button type="button" data-player="restart">
|
||||||
<svg><use xlink:href="#icon-restart"></use></svg>
|
<svg><use xlink:href="#icon-restart"></use></svg>
|
||||||
<span class="sr-only">Restart</span>
|
<span class="sr-only">Restart</span>
|
||||||
</button>
|
</button>
|
||||||
<button type="button" data-player="rewind">
|
<button type="button" data-player="rewind">
|
||||||
<svg><use xlink:href="#icon-rewind"></use></svg>
|
<svg><use xlink:href="#icon-rewind"></use></svg>
|
||||||
<span class="sr-only">Rewind {seektime} seconds</span>
|
<span class="sr-only">Rewind {seektime} secs</span>
|
||||||
</button>
|
</button>
|
||||||
<button type="button" data-player="play">
|
<button type="button" data-player="play">
|
||||||
<svg><use xlink:href="#icon-play"></use></svg>
|
<svg><use xlink:href="#icon-play"></use></svg>
|
||||||
@ -28,14 +28,18 @@
|
|||||||
</button>
|
</button>
|
||||||
<button type="button" data-player="fast-forward">
|
<button type="button" data-player="fast-forward">
|
||||||
<svg><use xlink:href="#icon-fast-forward"></use></svg>
|
<svg><use xlink:href="#icon-fast-forward"></use></svg>
|
||||||
<span class="sr-only">Fast forward {seektime} seconds</span>
|
<span class="sr-only">Forward {seektime} secs</span>
|
||||||
</button>
|
</button>
|
||||||
<span class="player-time">
|
<span class="player-time">
|
||||||
<span class="sr-only">Time</span>
|
<span class="sr-only">Current time</span>
|
||||||
|
<span class="player-current-time">00:00</span>
|
||||||
|
</span>
|
||||||
|
<span class="player-time">
|
||||||
|
<span class="sr-only">Duration</span>
|
||||||
<span class="player-duration">00:00</span>
|
<span class="player-duration">00:00</span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
<span class="player-controls-sound">
|
<span class="player-controls-right">
|
||||||
<input class="inverted sr-only" id="mute{id}" type="checkbox" data-player="mute">
|
<input class="inverted sr-only" id="mute{id}" type="checkbox" data-player="mute">
|
||||||
<label id="mute{id}" for="mute{id}">
|
<label id="mute{id}" for="mute{id}">
|
||||||
<svg class="icon-muted"><use xlink:href="#icon-muted"></use></svg>
|
<svg class="icon-muted"><use xlink:href="#icon-muted"></use></svg>
|
||||||
@ -56,7 +60,7 @@
|
|||||||
<button type="button" data-player="fullscreen">
|
<button type="button" data-player="fullscreen">
|
||||||
<svg class="icon-exit-fullscreen"><use xlink:href="#icon-exit-fullscreen"></use></svg>
|
<svg class="icon-exit-fullscreen"><use xlink:href="#icon-exit-fullscreen"></use></svg>
|
||||||
<svg><use xlink:href="#icon-enter-fullscreen"></use></svg>
|
<svg><use xlink:href="#icon-enter-fullscreen"></use></svg>
|
||||||
<span class="sr-only">Toggle fullscreen</span>
|
<span class="sr-only">Toggle Fullscreen</span>
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
12
gulpfile.js
12
gulpfile.js
@ -22,7 +22,8 @@ var fs = require("fs"),
|
|||||||
s3 = require("gulp-s3"),
|
s3 = require("gulp-s3"),
|
||||||
gzip = require("gulp-gzip"),
|
gzip = require("gulp-gzip"),
|
||||||
replace = require("gulp-replace"),
|
replace = require("gulp-replace"),
|
||||||
open = require("gulp-open");
|
open = require("gulp-open"),
|
||||||
|
size = require("gulp-size");
|
||||||
|
|
||||||
var root = __dirname,
|
var root = __dirname,
|
||||||
paths = {
|
paths = {
|
||||||
@ -223,6 +224,10 @@ gulp.task("cdn", function () {
|
|||||||
|
|
||||||
// Upload to CDN
|
// Upload to CDN
|
||||||
gulp.src(paths.upload)
|
gulp.src(paths.upload)
|
||||||
|
.pipe(size({
|
||||||
|
showFiles: true,
|
||||||
|
gzip: true
|
||||||
|
}))
|
||||||
.pipe(rename(function (path) {
|
.pipe(rename(function (path) {
|
||||||
path.dirname = path.dirname.replace(".", version);
|
path.dirname = path.dirname.replace(".", version);
|
||||||
}))
|
}))
|
||||||
@ -234,6 +239,11 @@ gulp.task("cdn", function () {
|
|||||||
gulp.task("docs", function () {
|
gulp.task("docs", function () {
|
||||||
console.log("Uploading " + version + " docs to " + aws.docs.bucket);
|
console.log("Uploading " + version + " docs to " + aws.docs.bucket);
|
||||||
|
|
||||||
|
// Replace versioned files in readme.md
|
||||||
|
gulp.src([root + "/readme.md"])
|
||||||
|
.pipe(replace(cdnpath, aws.cdn.bucket + "/" + version))
|
||||||
|
.pipe(gulp.dest(root));
|
||||||
|
|
||||||
// Replace versioned files in *.html
|
// Replace versioned files in *.html
|
||||||
gulp.src([paths.docs.root + "*.html"])
|
gulp.src([paths.docs.root + "*.html"])
|
||||||
.pipe(replace(cdnpath, aws.cdn.bucket + "/" + version))
|
.pipe(replace(cdnpath, aws.cdn.bucket + "/" + version))
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "plyr",
|
"name": "plyr",
|
||||||
"version": "1.0.23",
|
"version": "1.1.1",
|
||||||
"description": "A simple HTML5 media player using custom controls",
|
"description": "A simple HTML5 media player using custom controls",
|
||||||
"homepage": "http://plyr.io",
|
"homepage": "http://plyr.io",
|
||||||
"main": "gulpfile.js",
|
"main": "gulpfile.js",
|
||||||
@ -18,6 +18,7 @@
|
|||||||
"gulp-replace": "^0.5.3",
|
"gulp-replace": "^0.5.3",
|
||||||
"gulp-s3": "^0.3.0",
|
"gulp-s3": "^0.3.0",
|
||||||
"gulp-sass": "^1.3.3",
|
"gulp-sass": "^1.3.3",
|
||||||
|
"gulp-size": "^1.2.1",
|
||||||
"gulp-svgmin": "^1.0.0",
|
"gulp-svgmin": "^1.0.0",
|
||||||
"gulp-svgstore": "^5.0.0",
|
"gulp-svgstore": "^5.0.0",
|
||||||
"gulp-uglify": "~0.3.1",
|
"gulp-uglify": "~0.3.1",
|
||||||
|
42
readme.md
42
readme.md
@ -10,7 +10,7 @@ We wanted a lightweight, accessible and customisable media player that just supp
|
|||||||
|
|
||||||
## Features
|
## Features
|
||||||
- **Accessible** - full support for captions and screen readers.
|
- **Accessible** - full support for captions and screen readers.
|
||||||
- **Lightweight** - just 5.7KB minified and gzipped.
|
- **Lightweight** - just 6KB minified and gzipped.
|
||||||
- **Customisable** - make the player look how you want with the markup you want.
|
- **Customisable** - make the player look how you want with the markup you want.
|
||||||
- **Semantic** - uses the *right* elements. `<input type="range">` for volume and `<progress>` for progress and well, `<button>`s for buttons. There's no `<span>` or `<a href="#">` button hacks.
|
- **Semantic** - uses the *right* elements. `<input type="range">` for volume and `<progress>` for progress and well, `<button>`s for buttons. There's no `<span>` or `<a href="#">` button hacks.
|
||||||
- **Responsive** - as you'd expect these days.
|
- **Responsive** - as you'd expect these days.
|
||||||
@ -38,7 +38,7 @@ If you have any cool ideas or features, please let me know by [creating an issue
|
|||||||
|
|
||||||
Check `docs/index.html` and `docs/dist/docs.js` for an example setup.
|
Check `docs/index.html` and `docs/dist/docs.js` for an example setup.
|
||||||
|
|
||||||
**Heads up**, the example `index.html` file needs to be served from a webserver (such as Apache, Nginx, IIS or similar) unless you change the file sources to include http or https. e.g. change `//cdn.plyr.io/1.0.23/plyr.js` to `https://cdn.plyr.io/1.0.23/plyr.js`
|
**Heads up**, the example `index.html` file needs to be served from a webserver (such as Apache, Nginx, IIS or similar) unless you change the file sources to include http or https. e.g. change `//cdn.plyr.io/1.1.1/plyr.js` to `https://cdn.plyr.io/1.1.1/plyr.js`
|
||||||
|
|
||||||
### Bower
|
### Bower
|
||||||
If bower is your thang, you can grab Plyr using:
|
If bower is your thang, you can grab Plyr using:
|
||||||
@ -51,11 +51,11 @@ More info on setting up dependencies can be found in the [Bower Docs](http://bow
|
|||||||
If you want to use our CDN, you can use the following. HTTPS (SSL) is supported.
|
If you want to use our CDN, you can use the following. HTTPS (SSL) is supported.
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<link rel="stylesheet" href="//cdn.plyr.io/1.0.23/plyr.css">
|
<link rel="stylesheet" href="//cdn.plyr.io/1.1.1/plyr.css">
|
||||||
<script src="//cdn.plyr.io/1.0.23/plyr.js"></script>
|
<script src="//cdn.plyr.io/1.1.1/plyr.js"></script>
|
||||||
```
|
```
|
||||||
|
|
||||||
You can also access the `sprite.svg` file at `//cdn.plyr.io/1.0.23/sprite.svg`.
|
You can also access the `sprite.svg` file at `//cdn.plyr.io/1.1.1/sprite.svg`.
|
||||||
|
|
||||||
### CSS
|
### CSS
|
||||||
If you want to use the default css, add the `plyr.css` file from /dist into your head, or even better use `plyr.less` or `plyr.sass` file included in `/src` in your build to save a request.
|
If you want to use the default css, add the `plyr.css` file from /dist into your head, or even better use `plyr.less` or `plyr.sass` file included in `/src` in your build to save a request.
|
||||||
@ -168,6 +168,12 @@ You can pass the following options to the setup method.
|
|||||||
<td><code><a href="controls.md">See controls.md</a></code></td>
|
<td><code><a href="controls.md">See controls.md</a></code></td>
|
||||||
<td>See <a href="controls.md">controls.md</a> for more info on how the html needs to be structured.</td>
|
<td>See <a href="controls.md">controls.md</a> for more info on how the html needs to be structured.</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><code>controls</code></td>
|
||||||
|
<td>Array</td>
|
||||||
|
<td><code>["restart", "rewind", "play", "fast-forward", "current-time", "duration", "mute", "volume", "captions", "fullscreen"]</code></td>
|
||||||
|
<td>Toggle which control elements you would like to display when using the default controls html. If you specify a <code>html</code> option, this is redundant. The default value is to display everything.</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>debug</code></td>
|
<td><code>debug</code></td>
|
||||||
<td>Boolean</td>
|
<td>Boolean</td>
|
||||||
@ -192,6 +198,18 @@ You can pass the following options to the setup method.
|
|||||||
<td><code>true</code></td>
|
<td><code>true</code></td>
|
||||||
<td>Click (or tap) will toggle pause/play of a <code><video></code>.</td>
|
<td>Click (or tap) will toggle pause/play of a <code><video></code>.</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><code>tooltips</code></td>
|
||||||
|
<td>Boolean</td>
|
||||||
|
<td><code>false</code></td>
|
||||||
|
<td>Display control labels as tooltips on :hover & :focus (by default, the labels are screen reader only).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><code>displayDuration</code></td>
|
||||||
|
<td>Boolean</td>
|
||||||
|
<td><code>true</code></td>
|
||||||
|
<td>Displays the duration of the media on the "metadataloaded" event (on startup) in the current time display. This will only work if the `preload` attribute is not set to `none` (or is not set at all) and you choose not to display the duration (see <code>controls</code> option).</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>selectors</code></td>
|
<td><code>selectors</code></td>
|
||||||
<td>Object</td>
|
<td>Object</td>
|
||||||
@ -208,19 +226,19 @@ You can pass the following options to the setup method.
|
|||||||
<td><code>captions</code></td>
|
<td><code>captions</code></td>
|
||||||
<td>Object</td>
|
<td>Object</td>
|
||||||
<td>—</td>
|
<td>—</td>
|
||||||
<td>This currently contains one property `defaultActive` which toggles if captions should be on by default. The default value is <code>false</code>.</td>
|
<td>One property <code>defaultActive</code> which toggles if captions should be on by default. The default value is <code>false</code>.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>fullscreen</code></td>
|
<td><code>fullscreen</code></td>
|
||||||
<td>Object</td>
|
<td>Object</td>
|
||||||
<td>—</td>
|
<td>—</td>
|
||||||
<td>This currently contains two properties;<code>enabled</code> which toggles if fullscreen should be enabled (if the browser supports it). The default value is <code>true</code>. Also an extra property called <code>fallback</code> which will enable a full window view for older browsers. The default value is <code>true</code>.</td>
|
<td>Three properties; <code>enabled</code> which toggles if fullscreen should be enabled (if the browser supports it). The default value is <code>true</code>. A <code>fallback</code> property which will enable a full window view for older browsers. The default value is <code>true</code>. A <code>hideControls</code> property which will hide the controls when fullscreen is active and the video is playing, after 1s. The controls reappear on hover of the progress bar (mouse), focusing a child control or pausing the video (by tap/click of video if `click` is `true`). The default value is <code>true</code>.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>storage</code></td>
|
<td><code>storage</code></td>
|
||||||
<td>Object</td>
|
<td>Object</td>
|
||||||
<td>—</td>
|
<td>—</td>
|
||||||
<td>This currently contains one property `enabled` which toggles if local storage should be enabled (if the browser supports it). The default value is `true`. This enables storing user settings, currently it only stores volume but more will be added later.</td>
|
<td>Two properties; <code>enabled</code> which toggles if local storage should be enabled (if the browser supports it). The default value is `true`. This enables storing user settings, currently it only stores volume but more will be added later. The second property <code>key</code> is the key used for the local storage. The default is <code>plyr_volume</code> until more settings are stored.</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
@ -353,15 +371,15 @@ Fullscreen in Plyr is supported for all browsers that [currently support it](htt
|
|||||||
<td>✔</td>
|
<td>✔</td>
|
||||||
<td>✔</td>
|
<td>✔</td>
|
||||||
<td>✔</td>
|
<td>✔</td>
|
||||||
<td>✖²</td>
|
<td>API²</td>
|
||||||
<td>✔³</td>
|
<td>✔³</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
¹ iPhone forces the native player for `<video>` so no customisation possible
|
¹ Mobile Safari on the iPhone forces the native player for `<video>` so no useful customisation is possible. `<audio>` elements have volume controls disabled.
|
||||||
|
|
||||||
² Native player used (no support for `<progress>` or `<input type="range">`)
|
² Native player used (no support for `<progress>` or `<input type="range">`) but the API is supported (v1.0.28+)
|
||||||
|
|
||||||
³ IE10 has no native fullscreen support, fallback can be used (see options)
|
³ IE10 has no native fullscreen support, fallback can be used (see options)
|
||||||
|
|
||||||
@ -383,10 +401,12 @@ Plyr is developed by Sam Potts ([@sam_potts](https://twitter.com/sam_potts)) ([s
|
|||||||
## Mentions
|
## Mentions
|
||||||
- [The Changelog](http://thechangelog.com/plyr-simple-html5-media-player-custom-controls-webvtt-captions/)
|
- [The Changelog](http://thechangelog.com/plyr-simple-html5-media-player-custom-controls-webvtt-captions/)
|
||||||
- [HTML5 Weekly #177](http://html5weekly.com/issues/177)
|
- [HTML5 Weekly #177](http://html5weekly.com/issues/177)
|
||||||
|
- [Responsive Design #149](http://us4.campaign-archive2.com/?u=559bc631fe5294fc66f5f7f89&id=451a61490f)
|
||||||
- [Web Design Weekly #174](https://web-design-weekly.com/2015/02/24/web-design-weekly-174/)
|
- [Web Design Weekly #174](https://web-design-weekly.com/2015/02/24/web-design-weekly-174/)
|
||||||
- [Hacker News](https://news.ycombinator.com/item?id=9136774)
|
- [Hacker News](https://news.ycombinator.com/item?id=9136774)
|
||||||
- [Web Platform Daily](http://webplatformdaily.org/releases/2015-03-04)
|
- [Web Platform Daily](http://webplatformdaily.org/releases/2015-03-04)
|
||||||
- [LayerVault Designer News](https://news.layervault.com/stories/45394-plyr--a-simple-html5-media-player)
|
- [LayerVault Designer News](https://news.layervault.com/stories/45394-plyr--a-simple-html5-media-player)
|
||||||
|
- [The Treehouse Show #131](https://teamtreehouse.com/library/episode-131-origami-react-responsive-hero-images)
|
||||||
|
|
||||||
## Used by
|
## Used by
|
||||||
- [Selz.com](https://selz.com)
|
- [Selz.com](https://selz.com)
|
||||||
|
545
src/js/plyr.js
545
src/js/plyr.js
@ -1,7 +1,7 @@
|
|||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
// Plyr
|
// Plyr
|
||||||
// plyr.js v1.0.23
|
// plyr.js v1.1.1
|
||||||
// https://github.com/sampotts/plyr
|
// https://github.com/selz/plyr
|
||||||
// License: The MIT License (MIT)
|
// License: The MIT License (MIT)
|
||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
// Credits: http://paypal.github.io/accessible-html5-video-player/
|
// Credits: http://paypal.github.io/accessible-html5-video-player/
|
||||||
@ -20,9 +20,12 @@
|
|||||||
seekTime: 10,
|
seekTime: 10,
|
||||||
volume: 5,
|
volume: 5,
|
||||||
click: true,
|
click: true,
|
||||||
|
tooltips: false,
|
||||||
|
displayDuration: true,
|
||||||
selectors: {
|
selectors: {
|
||||||
container: ".player",
|
container: ".player",
|
||||||
controls: ".player-controls",
|
controls: ".player-controls",
|
||||||
|
labels: "[data-player] .sr-only, label .sr-only",
|
||||||
buttons: {
|
buttons: {
|
||||||
seek: "[data-player='seek']",
|
seek: "[data-player='seek']",
|
||||||
play: "[data-player='play']",
|
play: "[data-player='play']",
|
||||||
@ -41,6 +44,7 @@
|
|||||||
played: ".player-progress-played"
|
played: ".player-progress-played"
|
||||||
},
|
},
|
||||||
captions: ".player-captions",
|
captions: ".player-captions",
|
||||||
|
currentTime: ".player-current-time",
|
||||||
duration: ".player-duration"
|
duration: ".player-duration"
|
||||||
},
|
},
|
||||||
classes: {
|
classes: {
|
||||||
@ -51,13 +55,17 @@
|
|||||||
playing: "playing",
|
playing: "playing",
|
||||||
muted: "muted",
|
muted: "muted",
|
||||||
loading: "loading",
|
loading: "loading",
|
||||||
|
tooltip: "player-tooltip",
|
||||||
|
hidden: "sr-only",
|
||||||
|
hover: "hover",
|
||||||
captions: {
|
captions: {
|
||||||
enabled: "captions-enabled",
|
enabled: "captions-enabled",
|
||||||
active: "captions-active"
|
active: "captions-active"
|
||||||
},
|
},
|
||||||
fullscreen: {
|
fullscreen: {
|
||||||
enabled: "fullscreen-enabled",
|
enabled: "fullscreen-enabled",
|
||||||
active: "fullscreen-active"
|
active: "fullscreen-active",
|
||||||
|
hideControls: "fullscreen-hide-controls"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
captions: {
|
captions: {
|
||||||
@ -65,13 +73,20 @@
|
|||||||
},
|
},
|
||||||
fullscreen: {
|
fullscreen: {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
fallback: true
|
fallback: true,
|
||||||
|
hideControls: true
|
||||||
},
|
},
|
||||||
storage: {
|
storage: {
|
||||||
enabled: true
|
enabled: true,
|
||||||
|
key: "plyr_volume"
|
||||||
},
|
},
|
||||||
html: (function() {
|
controls: ["restart", "rewind", "play", "fast-forward", "current-time", "duration", "mute", "volume", "captions", "fullscreen"]
|
||||||
return [
|
};
|
||||||
|
|
||||||
|
// Build the default HTML
|
||||||
|
function _buildControls() {
|
||||||
|
// Open and add the progress and seek elements
|
||||||
|
var html = [
|
||||||
"<div class='player-controls'>",
|
"<div class='player-controls'>",
|
||||||
"<div class='player-progress'>",
|
"<div class='player-progress'>",
|
||||||
"<label for='seek{id}' class='sr-only'>Seek</label>",
|
"<label for='seek{id}' class='sr-only'>Seek</label>",
|
||||||
@ -83,15 +98,31 @@
|
|||||||
"<span>0</span>% buffered",
|
"<span>0</span>% buffered",
|
||||||
"</progress>",
|
"</progress>",
|
||||||
"</div>",
|
"</div>",
|
||||||
"<span class='player-controls-playback'>",
|
"<span class='player-controls-left'>"];
|
||||||
|
|
||||||
|
// Restart button
|
||||||
|
if(_inArray(config.controls, "restart")) {
|
||||||
|
html.push(
|
||||||
"<button type='button' data-player='restart'>",
|
"<button type='button' data-player='restart'>",
|
||||||
"<svg><use xlink:href='#icon-restart'></use></svg>",
|
"<svg><use xlink:href='#icon-restart'></use></svg>",
|
||||||
"<span class='sr-only'>Restart</span>",
|
"<span class='sr-only'>Restart</span>",
|
||||||
"</button>",
|
"</button>"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Rewind button
|
||||||
|
if(_inArray(config.controls, "rewind")) {
|
||||||
|
html.push(
|
||||||
"<button type='button' data-player='rewind'>",
|
"<button type='button' data-player='rewind'>",
|
||||||
"<svg><use xlink:href='#icon-rewind'></use></svg>",
|
"<svg><use xlink:href='#icon-rewind'></use></svg>",
|
||||||
"<span class='sr-only'>Rewind {seektime} seconds</span>",
|
"<span class='sr-only'>Rewind {seektime} secs</span>",
|
||||||
"</button>",
|
"</button>"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Play/pause button
|
||||||
|
if(_inArray(config.controls, "play")) {
|
||||||
|
html.push(
|
||||||
"<button type='button' data-player='play'>",
|
"<button type='button' data-player='play'>",
|
||||||
"<svg><use xlink:href='#icon-play'></use></svg>",
|
"<svg><use xlink:href='#icon-play'></use></svg>",
|
||||||
"<span class='sr-only'>Play</span>",
|
"<span class='sr-only'>Play</span>",
|
||||||
@ -99,41 +130,97 @@
|
|||||||
"<button type='button' data-player='pause'>",
|
"<button type='button' data-player='pause'>",
|
||||||
"<svg><use xlink:href='#icon-pause'></use></svg>",
|
"<svg><use xlink:href='#icon-pause'></use></svg>",
|
||||||
"<span class='sr-only'>Pause</span>",
|
"<span class='sr-only'>Pause</span>",
|
||||||
"</button>",
|
"</button>"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fast forward button
|
||||||
|
if(_inArray(config.controls, "fast-forward")) {
|
||||||
|
html.push(
|
||||||
"<button type='button' data-player='fast-forward'>",
|
"<button type='button' data-player='fast-forward'>",
|
||||||
"<svg><use xlink:href='#icon-fast-forward'></use></svg>",
|
"<svg><use xlink:href='#icon-fast-forward'></use></svg>",
|
||||||
"<span class='sr-only'>Fast forward {seektime} seconds</span>",
|
"<span class='sr-only'>Forward {seektime} secs</span>",
|
||||||
"</button>",
|
"</button>"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Media current time display
|
||||||
|
if(_inArray(config.controls, "current-time")) {
|
||||||
|
html.push(
|
||||||
"<span class='player-time'>",
|
"<span class='player-time'>",
|
||||||
"<span class='sr-only'>Time</span>",
|
"<span class='sr-only'>Current time</span>",
|
||||||
|
"<span class='player-current-time'>00:00</span>",
|
||||||
|
"</span>"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Media duration display
|
||||||
|
if(_inArray(config.controls, "duration")) {
|
||||||
|
html.push(
|
||||||
|
"<span class='player-time'>",
|
||||||
|
"<span class='sr-only'>Duration</span>",
|
||||||
"<span class='player-duration'>00:00</span>",
|
"<span class='player-duration'>00:00</span>",
|
||||||
|
"</span>"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Close left controls
|
||||||
|
html.push(
|
||||||
"</span>",
|
"</span>",
|
||||||
"</span>",
|
"<span class='player-controls-right'>"
|
||||||
"<span class='player-controls-sound'>",
|
);
|
||||||
|
|
||||||
|
// Toggle mute button
|
||||||
|
if(_inArray(config.controls, "mute")) {
|
||||||
|
html.push(
|
||||||
"<input class='inverted sr-only' id='mute{id}' type='checkbox' data-player='mute'>",
|
"<input class='inverted sr-only' id='mute{id}' type='checkbox' data-player='mute'>",
|
||||||
"<label id='mute{id}' for='mute{id}'>",
|
"<label id='mute{id}' for='mute{id}'>",
|
||||||
"<svg class='icon-muted'><use xlink:href='#icon-muted'></use></svg>",
|
"<svg class='icon-muted'><use xlink:href='#icon-muted'></use></svg>",
|
||||||
"<svg><use xlink:href='#icon-volume'></use></svg>",
|
"<svg><use xlink:href='#icon-volume'></use></svg>",
|
||||||
"<span class='sr-only'>Toggle Mute</span>",
|
"<span class='sr-only'>Toggle Mute</span>",
|
||||||
"</label>",
|
"</label>"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Volume range control
|
||||||
|
if(_inArray(config.controls, "volume")) {
|
||||||
|
html.push(
|
||||||
"<label for='volume{id}' class='sr-only'>Volume</label>",
|
"<label for='volume{id}' class='sr-only'>Volume</label>",
|
||||||
"<input id='volume{id}' class='player-volume' type='range' min='0' max='10' value='5' data-player='volume'>",
|
"<input id='volume{id}' class='player-volume' type='range' min='0' max='10' value='5' data-player='volume'>"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Toggle captions button
|
||||||
|
if(_inArray(config.controls, "captions")) {
|
||||||
|
html.push(
|
||||||
"<input class='sr-only' id='captions{id}' type='checkbox' data-player='captions'>",
|
"<input class='sr-only' id='captions{id}' type='checkbox' data-player='captions'>",
|
||||||
"<label for='captions{id}'>",
|
"<label for='captions{id}'>",
|
||||||
"<svg class='icon-captions-on'><use xlink:href='#icon-captions-on'></use></svg>",
|
"<svg class='icon-captions-on'><use xlink:href='#icon-captions-on'></use></svg>",
|
||||||
"<svg><use xlink:href='#icon-captions-off'></use></svg>",
|
"<svg><use xlink:href='#icon-captions-off'></use></svg>",
|
||||||
"<span class='sr-only'>Toggle Captions</span>",
|
"<span class='sr-only'>Toggle Captions</span>",
|
||||||
"</label>",
|
"</label>"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Toggle fullscreen button
|
||||||
|
if(_inArray(config.controls, "fullscreen")) {
|
||||||
|
html.push(
|
||||||
"<button type='button' data-player='fullscreen'>",
|
"<button type='button' data-player='fullscreen'>",
|
||||||
"<svg class='icon-exit-fullscreen'><use xlink:href='#icon-exit-fullscreen'></use></svg>",
|
"<svg class='icon-exit-fullscreen'><use xlink:href='#icon-exit-fullscreen'></use></svg>",
|
||||||
"<svg><use xlink:href='#icon-enter-fullscreen'></use></svg>",
|
"<svg><use xlink:href='#icon-enter-fullscreen'></use></svg>",
|
||||||
"<span class='sr-only'>Toggle fullscreen</span>",
|
"<span class='sr-only'>Toggle Fullscreen</span>",
|
||||||
"</button>",
|
"</button>"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Close everything
|
||||||
|
html.push(
|
||||||
"</span>",
|
"</span>",
|
||||||
"</div>"
|
"</div>"
|
||||||
].join("\n");
|
);
|
||||||
})()
|
|
||||||
};
|
return html.join("");
|
||||||
|
}
|
||||||
|
|
||||||
// Debugging
|
// Debugging
|
||||||
function _log(text, error) {
|
function _log(text, error) {
|
||||||
@ -146,7 +233,7 @@
|
|||||||
// Unfortunately, due to mixed support, UA sniffing is required
|
// Unfortunately, due to mixed support, UA sniffing is required
|
||||||
function _browserSniff() {
|
function _browserSniff() {
|
||||||
var nAgt = navigator.userAgent,
|
var nAgt = navigator.userAgent,
|
||||||
browserName = navigator.appName,
|
name = navigator.appName,
|
||||||
fullVersion = ""+parseFloat(navigator.appVersion),
|
fullVersion = ""+parseFloat(navigator.appVersion),
|
||||||
majorVersion = parseInt(navigator.appVersion,10),
|
majorVersion = parseInt(navigator.appVersion,10),
|
||||||
nameOffset,
|
nameOffset,
|
||||||
@ -155,22 +242,22 @@
|
|||||||
|
|
||||||
// MSIE 11
|
// MSIE 11
|
||||||
if ((navigator.appVersion.indexOf("Windows NT") !== -1) && (navigator.appVersion.indexOf("rv:11") !== -1)) {
|
if ((navigator.appVersion.indexOf("Windows NT") !== -1) && (navigator.appVersion.indexOf("rv:11") !== -1)) {
|
||||||
browserName = "IE";
|
name = "IE";
|
||||||
fullVersion = "11;";
|
fullVersion = "11;";
|
||||||
}
|
}
|
||||||
// MSIE
|
// MSIE
|
||||||
else if ((verOffset=nAgt.indexOf("MSIE")) !== -1) {
|
else if ((verOffset=nAgt.indexOf("MSIE")) !== -1) {
|
||||||
browserName = "IE";
|
name = "IE";
|
||||||
fullVersion = nAgt.substring(verOffset+5);
|
fullVersion = nAgt.substring(verOffset+5);
|
||||||
}
|
}
|
||||||
// Chrome
|
// Chrome
|
||||||
else if ((verOffset=nAgt.indexOf("Chrome")) !== -1) {
|
else if ((verOffset=nAgt.indexOf("Chrome")) !== -1) {
|
||||||
browserName = "Chrome";
|
name = "Chrome";
|
||||||
fullVersion = nAgt.substring(verOffset+7);
|
fullVersion = nAgt.substring(verOffset+7);
|
||||||
}
|
}
|
||||||
// Safari
|
// Safari
|
||||||
else if ((verOffset=nAgt.indexOf("Safari")) !== -1) {
|
else if ((verOffset=nAgt.indexOf("Safari")) !== -1) {
|
||||||
browserName = "Safari";
|
name = "Safari";
|
||||||
fullVersion = nAgt.substring(verOffset+7);
|
fullVersion = nAgt.substring(verOffset+7);
|
||||||
if ((verOffset=nAgt.indexOf("Version")) !== -1) {
|
if ((verOffset=nAgt.indexOf("Version")) !== -1) {
|
||||||
fullVersion = nAgt.substring(verOffset+8);
|
fullVersion = nAgt.substring(verOffset+8);
|
||||||
@ -178,15 +265,15 @@
|
|||||||
}
|
}
|
||||||
// Firefox
|
// Firefox
|
||||||
else if ((verOffset=nAgt.indexOf("Firefox")) !== -1) {
|
else if ((verOffset=nAgt.indexOf("Firefox")) !== -1) {
|
||||||
browserName = "Firefox";
|
name = "Firefox";
|
||||||
fullVersion = nAgt.substring(verOffset+8);
|
fullVersion = nAgt.substring(verOffset+8);
|
||||||
}
|
}
|
||||||
// In most other browsers, "name/version" is at the end of userAgent
|
// In most other browsers, "name/version" is at the end of userAgent
|
||||||
else if ( (nameOffset=nAgt.lastIndexOf(" ")+1) < (verOffset=nAgt.lastIndexOf("/")) ) {
|
else if ( (nameOffset=nAgt.lastIndexOf(" ")+1) < (verOffset=nAgt.lastIndexOf("/")) ) {
|
||||||
browserName = nAgt.substring(nameOffset,verOffset);
|
name = nAgt.substring(nameOffset,verOffset);
|
||||||
fullVersion = nAgt.substring(verOffset+1);
|
fullVersion = nAgt.substring(verOffset+1);
|
||||||
if (browserName.toLowerCase()==browserName.toUpperCase()) {
|
if (name.toLowerCase()==name.toUpperCase()) {
|
||||||
browserName = navigator.appName;
|
name = navigator.appName;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Trim the fullVersion string at semicolon/space if present
|
// Trim the fullVersion string at semicolon/space if present
|
||||||
@ -202,14 +289,19 @@
|
|||||||
fullVersion = ""+parseFloat(navigator.appVersion);
|
fullVersion = ""+parseFloat(navigator.appVersion);
|
||||||
majorVersion = parseInt(navigator.appVersion,10);
|
majorVersion = parseInt(navigator.appVersion,10);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return data
|
// Return data
|
||||||
return [browserName, majorVersion];
|
return {
|
||||||
|
name: name,
|
||||||
|
version: majorVersion,
|
||||||
|
ios: /(iPad|iPhone|iPod)/g.test(navigator.platform)
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check for mime type support against a player instance
|
// Check for mime type support against a player instance
|
||||||
// Credits: http://diveintohtml5.info/everything.html
|
// Credits: http://diveintohtml5.info/everything.html
|
||||||
// Related: http://www.leanbackplayer.com/test/h5mt.html
|
// Related: http://www.leanbackplayer.com/test/h5mt.html
|
||||||
function _support(player, mimeType) {
|
function _supportMime(player, mimeType) {
|
||||||
var media = player.media;
|
var media = player.media;
|
||||||
|
|
||||||
// Only check video types for video players
|
// Only check video types for video players
|
||||||
@ -236,6 +328,11 @@
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Element exists in an array
|
||||||
|
function _inArray(haystack, needle) {
|
||||||
|
return Array.prototype.indexOf && (haystack.indexOf(needle) != -1);
|
||||||
|
}
|
||||||
|
|
||||||
// Replace all
|
// Replace all
|
||||||
function _replaceAll(string, find, replace) {
|
function _replaceAll(string, find, replace) {
|
||||||
return string.replace(new RegExp(find.replace(/([.*+?^=!:${}()|\[\]\/\\])/g, "\\$1"), "g"), replace);
|
return string.replace(new RegExp(find.replace(/([.*+?^=!:${}()|\[\]\/\\])/g, "\\$1"), "g"), replace);
|
||||||
@ -307,6 +404,17 @@
|
|||||||
function _toggleHandler(element, events, callback, toggle) {
|
function _toggleHandler(element, events, callback, toggle) {
|
||||||
events = events.split(" ");
|
events = events.split(" ");
|
||||||
|
|
||||||
|
// If a nodelist is passed, call itself on each node
|
||||||
|
if(element instanceof NodeList) {
|
||||||
|
for (var x = 0; x < element.length; x++) {
|
||||||
|
if (element[x] instanceof Node) {
|
||||||
|
_toggleHandler(element[x], arguments[1], arguments[2], arguments[3]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If a single node is passed, bind the event listener
|
||||||
for (var i = 0; i < events.length; i++) {
|
for (var i = 0; i < events.length; i++) {
|
||||||
element[toggle ? "addEventListener" : "removeEventListener"](events[i], callback, false);
|
element[toggle ? "addEventListener" : "removeEventListener"](events[i], callback, false);
|
||||||
}
|
}
|
||||||
@ -314,13 +422,43 @@
|
|||||||
|
|
||||||
// Bind event
|
// Bind event
|
||||||
function _on(element, events, callback) {
|
function _on(element, events, callback) {
|
||||||
|
if(element) {
|
||||||
_toggleHandler(element, events, callback, true);
|
_toggleHandler(element, events, callback, true);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Unbind event
|
// Unbind event
|
||||||
function _off(element, events, callback) {
|
function _off(element, events, callback) {
|
||||||
|
if(element) {
|
||||||
_toggleHandler(element, events, callback, false);
|
_toggleHandler(element, events, callback, false);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Trigger event
|
||||||
|
function _triggerEvent(element, event) {
|
||||||
|
// Create faux event
|
||||||
|
var fauxEvent = document.createEvent("MouseEvents");
|
||||||
|
|
||||||
|
// Set the event type
|
||||||
|
fauxEvent.initEvent(event, true, true);
|
||||||
|
|
||||||
|
// Dispatch the event
|
||||||
|
element.dispatchEvent(fauxEvent);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Toggle checkbox
|
||||||
|
function _toggleCheckbox(event) {
|
||||||
|
// Only listen for return key
|
||||||
|
if(event.keyCode && event.keyCode != 13) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Toggle the checkbox
|
||||||
|
event.target.checked = !event.target.checked;
|
||||||
|
|
||||||
|
// Trigger change event
|
||||||
|
_triggerEvent(event.target, "change");
|
||||||
|
}
|
||||||
|
|
||||||
// Get percentage
|
// Get percentage
|
||||||
function _getPercentage(current, max) {
|
function _getPercentage(current, max) {
|
||||||
@ -446,7 +584,7 @@
|
|||||||
// Seek the manual caption time and update UI
|
// Seek the manual caption time and update UI
|
||||||
function _seekManualCaptions(time) {
|
function _seekManualCaptions(time) {
|
||||||
// If it's not video, or we're using textTracks, bail.
|
// If it's not video, or we're using textTracks, bail.
|
||||||
if (player.usingTextTracks || player.type !== "video") {
|
if (player.usingTextTracks || player.type !== "video" || !player.supported.full) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -482,11 +620,16 @@
|
|||||||
|
|
||||||
// Display captions container and button (for initialization)
|
// Display captions container and button (for initialization)
|
||||||
function _showCaptions() {
|
function _showCaptions() {
|
||||||
|
// If there's no caption toggle, bail
|
||||||
|
if(!player.buttons.captions) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
_toggleClass(player.container, config.classes.captions.enabled, true);
|
_toggleClass(player.container, config.classes.captions.enabled, true);
|
||||||
|
|
||||||
if (config.captions.defaultActive) {
|
if (config.captions.defaultActive) {
|
||||||
_toggleClass(player.container, config.classes.captions.active, true);
|
_toggleClass(player.container, config.classes.captions.active, true);
|
||||||
player.buttons.captions.setAttribute("checked", "checked");
|
player.buttons.captions.checked = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -541,18 +684,31 @@
|
|||||||
// Insert custom video controls
|
// Insert custom video controls
|
||||||
_log("Injecting custom controls.");
|
_log("Injecting custom controls.");
|
||||||
|
|
||||||
// Use specified html
|
// If no controls are specified, create default
|
||||||
// Need to do a default?
|
if(!config.html) {
|
||||||
var html = config.html;
|
config.html = _buildControls();
|
||||||
|
}
|
||||||
|
|
||||||
// Replace seek time instances
|
// Replace seek time instances
|
||||||
html = _replaceAll(html, "{seektime}", config.seekTime);
|
config.html = _replaceAll(config.html, "{seektime}", config.seekTime);
|
||||||
|
|
||||||
// Replace all id references
|
// Replace all id references
|
||||||
html = _replaceAll(html, "{id}", player.random);
|
config.html = _replaceAll(config.html, "{id}", player.random);
|
||||||
|
|
||||||
// Inject into the container
|
// Inject into the container
|
||||||
player.container.insertAdjacentHTML("beforeend", html);
|
player.container.insertAdjacentHTML("beforeend", config.html);
|
||||||
|
|
||||||
|
// Setup tooltips
|
||||||
|
if(config.tooltips) {
|
||||||
|
var labels = _getElements(config.selectors.labels);
|
||||||
|
|
||||||
|
for (var i = labels.length - 1; i >= 0; i--) {
|
||||||
|
var label = labels[i];
|
||||||
|
|
||||||
|
_toggleClass(label, config.classes.hidden, false);
|
||||||
|
_toggleClass(label, config.classes.tooltip, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Find the UI controls and store references
|
// Find the UI controls and store references
|
||||||
@ -568,9 +724,12 @@
|
|||||||
player.buttons.restart = _getElement(config.selectors.buttons.restart);
|
player.buttons.restart = _getElement(config.selectors.buttons.restart);
|
||||||
player.buttons.rewind = _getElement(config.selectors.buttons.rewind);
|
player.buttons.rewind = _getElement(config.selectors.buttons.rewind);
|
||||||
player.buttons.forward = _getElement(config.selectors.buttons.forward);
|
player.buttons.forward = _getElement(config.selectors.buttons.forward);
|
||||||
|
player.buttons.fullscreen = _getElement(config.selectors.buttons.fullscreen);
|
||||||
|
|
||||||
|
// Inputs
|
||||||
player.buttons.mute = _getElement(config.selectors.buttons.mute);
|
player.buttons.mute = _getElement(config.selectors.buttons.mute);
|
||||||
player.buttons.captions = _getElement(config.selectors.buttons.captions);
|
player.buttons.captions = _getElement(config.selectors.buttons.captions);
|
||||||
player.buttons.fullscreen = _getElement(config.selectors.buttons.fullscreen);
|
player.checkboxes = _getElements("[type='checkbox']");
|
||||||
|
|
||||||
// Progress
|
// Progress
|
||||||
player.progress = {};
|
player.progress = {};
|
||||||
@ -579,30 +738,41 @@
|
|||||||
// Progress - Buffering
|
// Progress - Buffering
|
||||||
player.progress.buffer = {};
|
player.progress.buffer = {};
|
||||||
player.progress.buffer.bar = _getElement(config.selectors.progress.buffer);
|
player.progress.buffer.bar = _getElement(config.selectors.progress.buffer);
|
||||||
player.progress.buffer.text = player.progress.buffer.bar.getElementsByTagName("span")[0];
|
player.progress.buffer.text = player.progress.buffer.bar && player.progress.buffer.bar.getElementsByTagName("span")[0];
|
||||||
|
|
||||||
// Progress - Played
|
// Progress - Played
|
||||||
player.progress.played = {};
|
player.progress.played = {};
|
||||||
player.progress.played.bar = _getElement(config.selectors.progress.played);
|
player.progress.played.bar = _getElement(config.selectors.progress.played);
|
||||||
player.progress.played.text = player.progress.played.bar.getElementsByTagName("span")[0];
|
player.progress.played.text = player.progress.played.bar && player.progress.played.bar.getElementsByTagName("span")[0];
|
||||||
|
|
||||||
// Volume
|
// Volume
|
||||||
player.volume = _getElement(config.selectors.buttons.volume);
|
player.volume = _getElement(config.selectors.buttons.volume);
|
||||||
|
|
||||||
// Timing
|
// Timing
|
||||||
player.duration = _getElement(config.selectors.duration);
|
player.duration = _getElement(config.selectors.duration);
|
||||||
|
player.currentTime = _getElement(config.selectors.currentTime);
|
||||||
player.seekTime = _getElements(config.selectors.seekTime);
|
player.seekTime = _getElements(config.selectors.seekTime);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
catch(e) {
|
catch(e) {
|
||||||
_log("It looks like there's a problem with your controls html. Bailing.", true);
|
_log("It looks like there's a problem with your controls html. Bailing.", true);
|
||||||
|
|
||||||
|
// Restore native video controls
|
||||||
|
player.media.setAttribute("controls", "");
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Setup aria attributes
|
// Setup aria attributes
|
||||||
function _setupAria() {
|
function _setupAria() {
|
||||||
|
// If there's no play button, bail
|
||||||
|
if(!player.buttons.play) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Find the current text
|
||||||
var label = player.buttons.play.innerText || "Play";
|
var label = player.buttons.play.innerText || "Play";
|
||||||
|
|
||||||
// If there's a media title set, use that for the label
|
// If there's a media title set, use that for the label
|
||||||
@ -615,26 +785,27 @@
|
|||||||
|
|
||||||
// Setup media
|
// Setup media
|
||||||
function _setupMedia() {
|
function _setupMedia() {
|
||||||
player.media = player.container.querySelectorAll("audio, video")[0];
|
|
||||||
|
|
||||||
// If there's no media, bail
|
// If there's no media, bail
|
||||||
if(!player.media) {
|
if(!player.media) {
|
||||||
_log("No audio or video element found!", true);
|
_log("No audio or video element found!", true);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(player.supported.full) {
|
||||||
// Remove native video controls
|
// Remove native video controls
|
||||||
player.media.removeAttribute("controls");
|
player.media.removeAttribute("controls");
|
||||||
|
|
||||||
// Set media type
|
|
||||||
player.type = (player.media.tagName == "VIDEO" ? "video" : "audio");
|
|
||||||
|
|
||||||
// Add type class
|
// Add type class
|
||||||
_toggleClass(player.container, config.classes[player.type], true);
|
_toggleClass(player.container, config.classes[player.type], true);
|
||||||
|
|
||||||
// If there's no autoplay attribute, assume the video is stopped and add state class
|
// If there's no autoplay attribute, assume the video is stopped and add state class
|
||||||
_toggleClass(player.container, config.classes.stopped, (player.media.getAttribute("autoplay") === null));
|
_toggleClass(player.container, config.classes.stopped, (player.media.getAttribute("autoplay") === null));
|
||||||
|
|
||||||
|
// Add iOS class
|
||||||
|
if(player.browser.ios) {
|
||||||
|
_toggleClass(player.container, "ios", true);
|
||||||
|
}
|
||||||
|
|
||||||
// Inject the player wrapper
|
// Inject the player wrapper
|
||||||
if(player.type === "video") {
|
if(player.type === "video") {
|
||||||
// Create the wrapper div
|
// Create the wrapper div
|
||||||
@ -647,6 +818,7 @@
|
|||||||
// Cache the container
|
// Cache the container
|
||||||
player.videoContainer = wrapper;
|
player.videoContainer = wrapper;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Autoplay
|
// Autoplay
|
||||||
if(player.media.getAttribute("autoplay") !== null) {
|
if(player.media.getAttribute("autoplay") !== null) {
|
||||||
@ -710,10 +882,10 @@
|
|||||||
_showCaptions(player);
|
_showCaptions(player);
|
||||||
|
|
||||||
// If IE 10/11 or Firefox 31+ or Safari 7+, don"t use native captioning (still doesn"t work although they claim it"s now supported)
|
// If IE 10/11 or Firefox 31+ or Safari 7+, don"t use native captioning (still doesn"t work although they claim it"s now supported)
|
||||||
if ((player.browserName === "IE" && player.browserMajorVersion === 10) ||
|
if ((player.browser.name === "IE" && player.browser.version === 10) ||
|
||||||
(player.browserName === "IE" && player.browserMajorVersion === 11) ||
|
(player.browser.name === "IE" && player.browser.version === 11) ||
|
||||||
(player.browserName === "Firefox" && player.browserMajorVersion >= 31) ||
|
(player.browser.name === "Firefox" && player.browser.version >= 31) ||
|
||||||
(player.browserName === "Safari" && player.browserMajorVersion >= 7)) {
|
(player.browser.name === "Safari" && player.browser.version >= 7)) {
|
||||||
// Debugging
|
// Debugging
|
||||||
_log("Detected IE 10/11 or Firefox 31+ or Safari 7+.");
|
_log("Detected IE 10/11 or Firefox 31+ or Safari 7+.");
|
||||||
|
|
||||||
@ -731,10 +903,12 @@
|
|||||||
|
|
||||||
if (track.kind === "captions") {
|
if (track.kind === "captions") {
|
||||||
_on(track, "cuechange", function() {
|
_on(track, "cuechange", function() {
|
||||||
if (this.activeCues[0]) {
|
// Clear container
|
||||||
if (this.activeCues[0].hasOwnProperty("text")) {
|
player.captionsContainer.innerHTML = "";
|
||||||
player.captionsContainer.innerHTML = this.activeCues[0].text;
|
|
||||||
}
|
// Display a cue, if there is one
|
||||||
|
if (this.activeCues[0] && this.activeCues[0].hasOwnProperty("text")) {
|
||||||
|
player.captionsContainer.appendChild(this.activeCues[0].getCueAsHTML());
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -785,7 +959,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// If Safari 7+, removing track from DOM [see "turn off native caption rendering" above]
|
// If Safari 7+, removing track from DOM [see "turn off native caption rendering" above]
|
||||||
if (player.browserName === "Safari" && player.browserMajorVersion >= 7) {
|
if (player.browser.name === "Safari" && player.browser.version >= 7) {
|
||||||
_log("Safari 7+ detected; removing track from DOM.");
|
_log("Safari 7+ detected; removing track from DOM.");
|
||||||
|
|
||||||
// Find all <track> elements
|
// Find all <track> elements
|
||||||
@ -815,6 +989,11 @@
|
|||||||
else {
|
else {
|
||||||
_log("Fullscreen not supported and fallback disabled.");
|
_log("Fullscreen not supported and fallback disabled.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set control hide class hook
|
||||||
|
if(config.fullscreen.hideControls) {
|
||||||
|
_toggleClass(player.container, config.classes.fullscreen.hideControls, true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -871,7 +1050,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Set the current time
|
// Set the current time
|
||||||
|
// Try/catch incase the media isn't set and we're calling seek() from source() and IE moans
|
||||||
|
try {
|
||||||
player.media.currentTime = targetTime.toFixed(1);
|
player.media.currentTime = targetTime.toFixed(1);
|
||||||
|
}
|
||||||
|
catch(e) {}
|
||||||
|
|
||||||
// Logging
|
// Logging
|
||||||
_log("Seeking to " + player.media.currentTime + " seconds");
|
_log("Seeking to " + player.media.currentTime + " seconds");
|
||||||
@ -938,10 +1121,15 @@
|
|||||||
|
|
||||||
// Set volume
|
// Set volume
|
||||||
function _setVolume(volume) {
|
function _setVolume(volume) {
|
||||||
|
// Bail if there's no volume element
|
||||||
|
if(!player.volume) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Use default if needed
|
// Use default if needed
|
||||||
if(typeof volume === "undefined") {
|
if(typeof volume === "undefined") {
|
||||||
if(config.storage.enabled && _storage().supported) {
|
if(config.storage.enabled && _storage().supported) {
|
||||||
volume = window.localStorage.plyr_volume || config.volume;
|
volume = window.localStorage[config.storage.key] || config.volume;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
volume = config.volume;
|
volume = config.volume;
|
||||||
@ -952,8 +1140,15 @@
|
|||||||
volume = 10;
|
volume = 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If the controls are there
|
||||||
|
if(player.supported.full) {
|
||||||
player.volume.value = volume;
|
player.volume.value = volume;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set the player volume
|
||||||
player.media.volume = parseFloat(volume / 10);
|
player.media.volume = parseFloat(volume / 10);
|
||||||
|
|
||||||
|
// Update the UI
|
||||||
_checkMute();
|
_checkMute();
|
||||||
|
|
||||||
// Store the volume in storage
|
// Store the volume in storage
|
||||||
@ -965,29 +1160,36 @@
|
|||||||
// Mute
|
// Mute
|
||||||
function _toggleMute(muted) {
|
function _toggleMute(muted) {
|
||||||
// If the method is called without parameter, toggle based on current value
|
// If the method is called without parameter, toggle based on current value
|
||||||
if(typeof active === "undefined") {
|
if(typeof muted === "undefined") {
|
||||||
muted = !player.media.muted;
|
muted = !player.media.muted;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If the controls are there
|
||||||
|
if(player.supported.full) {
|
||||||
player.buttons.mute.checked = muted;
|
player.buttons.mute.checked = muted;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set mute on the player
|
||||||
player.media.muted = muted;
|
player.media.muted = muted;
|
||||||
|
|
||||||
|
// Update UI
|
||||||
_checkMute();
|
_checkMute();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Toggle captions
|
// Toggle captions
|
||||||
function _toggleCaptions(active) {
|
function _toggleCaptions(show) {
|
||||||
// If the method is called without parameter, toggle based on current value
|
// If there's no full support, or there's no caption toggle
|
||||||
if(typeof active === "undefined") {
|
if(!player.supported.full || !player.buttons.captions) {
|
||||||
active = (player.container.className.indexOf(config.classes.captions.active) === -1);
|
return;
|
||||||
player.buttons.captions.checked = active;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (active) {
|
// If the method is called without parameter, toggle based on current value
|
||||||
_toggleClass(player.container, config.classes.captions.active, true);
|
if(typeof show === "undefined") {
|
||||||
}
|
show = (player.container.className.indexOf(config.classes.captions.active) === -1);
|
||||||
else {
|
player.buttons.captions.checked = show;
|
||||||
_toggleClass(player.container, config.classes.captions.active);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_toggleClass(player.container, config.classes.captions.active, show);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check mute state
|
// Check mute state
|
||||||
@ -1022,7 +1224,7 @@
|
|||||||
value = _getPercentage(player.media.currentTime, player.media.duration);
|
value = _getPercentage(player.media.currentTime, player.media.duration);
|
||||||
|
|
||||||
// Set seek range value only if it's a "natural" time event
|
// Set seek range value only if it's a "natural" time event
|
||||||
if(event.type == "timeupdate") {
|
if(event.type == "timeupdate" && player.buttons.seek) {
|
||||||
player.buttons.seek.value = value;
|
player.buttons.seek.value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1054,27 +1256,55 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Set values
|
// Set values
|
||||||
|
if(progress) {
|
||||||
progress.value = value;
|
progress.value = value;
|
||||||
|
}
|
||||||
|
if(text) {
|
||||||
text.innerHTML = value;
|
text.innerHTML = value;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Update the displayed play time
|
// Update the displayed time
|
||||||
function _updateTimeDisplay() {
|
function _updateTimeDisplay(time, element) {
|
||||||
player.secs = parseInt(player.media.currentTime % 60);
|
// Bail if there's no duration display
|
||||||
player.mins = parseInt((player.media.currentTime / 60) % 60);
|
if(!element) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
player.secs = parseInt(time % 60);
|
||||||
|
player.mins = parseInt((time / 60) % 60);
|
||||||
|
player.hours = parseInt(((time / 60) / 60) % 60);
|
||||||
|
|
||||||
|
// Do we need to display hours?
|
||||||
|
var displayHours = (parseInt(((player.media.duration / 60) / 60) % 60) > 0)
|
||||||
|
|
||||||
// Ensure it"s two digits. For example, 03 rather than 3.
|
// Ensure it"s two digits. For example, 03 rather than 3.
|
||||||
player.secs = ("0" + player.secs).slice(-2);
|
player.secs = ("0" + player.secs).slice(-2);
|
||||||
player.mins = ("0" + player.mins).slice(-2);
|
player.mins = ("0" + player.mins).slice(-2);
|
||||||
|
|
||||||
// Render
|
// Render
|
||||||
player.duration.innerHTML = player.mins + ":" + player.secs;
|
element.innerHTML = (displayHours ? player.hours + ":" : "") + player.mins + ":" + player.secs;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Show the duration on metadataloaded
|
||||||
|
function _displayDuration() {
|
||||||
|
var duration = player.media.duration || 0;
|
||||||
|
|
||||||
|
// If there's only one time display, display duration there
|
||||||
|
if(!player.duration && config.displayDuration && player.media.paused) {
|
||||||
|
_updateTimeDisplay(duration, player.currentTime);
|
||||||
|
}
|
||||||
|
|
||||||
|
// If there's a duration element, update content
|
||||||
|
if(player.duration) {
|
||||||
|
_updateTimeDisplay(duration, player.duration);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle time change event
|
// Handle time change event
|
||||||
function _timeUpdate(event) {
|
function _timeUpdate(event) {
|
||||||
// Duration
|
// Duration
|
||||||
_updateTimeDisplay();
|
_updateTimeDisplay(player.media.currentTime, player.currentTime);
|
||||||
|
|
||||||
// Playing progress
|
// Playing progress
|
||||||
_updateProgress(event);
|
_updateProgress(event);
|
||||||
@ -1117,9 +1347,6 @@
|
|||||||
// Restart
|
// Restart
|
||||||
_seek();
|
_seek();
|
||||||
|
|
||||||
// Update the UI
|
|
||||||
_checkPlaying();
|
|
||||||
|
|
||||||
// Remove current sources
|
// Remove current sources
|
||||||
_removeSources();
|
_removeSources();
|
||||||
|
|
||||||
@ -1138,9 +1365,14 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(player.supported.full) {
|
||||||
// Reset time display
|
// Reset time display
|
||||||
_timeUpdate();
|
_timeUpdate();
|
||||||
|
|
||||||
|
// Update the UI
|
||||||
|
_checkPlaying();
|
||||||
|
}
|
||||||
|
|
||||||
// Re-load sources
|
// Re-load sources
|
||||||
player.media.load();
|
player.media.load();
|
||||||
|
|
||||||
@ -1195,22 +1427,8 @@
|
|||||||
_on(player.buttons.fullscreen, "click", _toggleFullscreen);
|
_on(player.buttons.fullscreen, "click", _toggleFullscreen);
|
||||||
|
|
||||||
// Handle user exiting fullscreen by escaping etc
|
// Handle user exiting fullscreen by escaping etc
|
||||||
|
if(fullscreen.supportsFullScreen) {
|
||||||
_on(document, fullscreen.fullScreenEventName, _toggleFullscreen);
|
_on(document, fullscreen.fullScreenEventName, _toggleFullscreen);
|
||||||
|
|
||||||
// Click video
|
|
||||||
if(player.type === "video" && config.click) {
|
|
||||||
_on(player.videoContainer, "click", function() {
|
|
||||||
if(player.media.paused) {
|
|
||||||
_play();
|
|
||||||
}
|
|
||||||
else if(player.media.ended) {
|
|
||||||
_seek();
|
|
||||||
_play();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
_pause();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Time change on media
|
// Time change on media
|
||||||
@ -1219,19 +1437,25 @@
|
|||||||
// Update manual captions
|
// Update manual captions
|
||||||
_on(player.media, "timeupdate", _seekManualCaptions);
|
_on(player.media, "timeupdate", _seekManualCaptions);
|
||||||
|
|
||||||
|
// Display duration
|
||||||
|
_on(player.media, "loadedmetadata", _displayDuration);
|
||||||
|
|
||||||
// Seek
|
// Seek
|
||||||
_on(player.buttons.seek, "change input", _seek);
|
_on(player.buttons.seek, "change input", _seek);
|
||||||
|
|
||||||
// Captions
|
// Captions
|
||||||
_on(player.buttons.captions, "click", function() {
|
_on(player.buttons.captions, "change", function() {
|
||||||
_toggleCaptions(this.checked);
|
_toggleCaptions(this.checked);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Clear captions at end of video
|
// Handle the media finishing
|
||||||
_on(player.media, "ended", function() {
|
_on(player.media, "ended", function() {
|
||||||
|
// Clear
|
||||||
if(player.type === "video") {
|
if(player.type === "video") {
|
||||||
player.captionsContainer.innerHTML = "";
|
player.captionsContainer.innerHTML = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Reset UI
|
||||||
_checkPlaying();
|
_checkPlaying();
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -1249,33 +1473,66 @@
|
|||||||
|
|
||||||
// Loading
|
// Loading
|
||||||
_on(player.media, "waiting canplay seeked", _checkLoading);
|
_on(player.media, "waiting canplay seeked", _checkLoading);
|
||||||
|
|
||||||
|
// Toggle checkboxes on return key (as they look like buttons)
|
||||||
|
_on(player.checkboxes, "keyup", _toggleCheckbox);
|
||||||
|
|
||||||
|
// Click video
|
||||||
|
if(player.type === "video" && config.click) {
|
||||||
|
_on(player.videoContainer, "click", function() {
|
||||||
|
if(player.media.paused) {
|
||||||
|
_play();
|
||||||
|
}
|
||||||
|
else if(player.media.ended) {
|
||||||
|
_seek();
|
||||||
|
_play();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
_pause();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Bind to mouse hover
|
||||||
|
if(config.fullscreen.hideControls) {
|
||||||
|
_on(player.controls, "mouseenter mouseleave", function(event) {
|
||||||
|
_toggleClass(player.controls, config.classes.hover, (event.type === "mouseenter"));
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function _init() {
|
function _init() {
|
||||||
// Setup the fullscreen api
|
// Setup the fullscreen api
|
||||||
fullscreen = _fullscreen();
|
fullscreen = _fullscreen();
|
||||||
|
|
||||||
// Sniff
|
// Sniff out the browser
|
||||||
player.browserInfo = _browserSniff();
|
player.browser = _browserSniff();
|
||||||
player.browserName = player.browserInfo[0];
|
|
||||||
player.browserMajorVersion = player.browserInfo[1];
|
|
||||||
|
|
||||||
// Debug info
|
// Get the media element
|
||||||
_log(player.browserName + " " + player.browserMajorVersion);
|
player.media = player.container.querySelectorAll("audio, video")[0];
|
||||||
|
|
||||||
// If IE8, stop customization (use fallback)
|
// Set media type
|
||||||
// If IE9, stop customization (use native controls)
|
player.type = player.media.tagName.toLowerCase();
|
||||||
if (player.browserName === "IE" && (player.browserMajorVersion === 8 || player.browserMajorVersion === 9) ) {
|
|
||||||
_log("Browser not suppported.", true);
|
// Check for full support
|
||||||
|
player.supported = api.supported(player.type);
|
||||||
|
|
||||||
|
// If no native support, bail
|
||||||
|
if(!player.supported.basic) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Debug info
|
||||||
|
_log(player.browser.name + " " + player.browser.version);
|
||||||
|
|
||||||
// Setup media
|
// Setup media
|
||||||
_setupMedia();
|
_setupMedia();
|
||||||
|
|
||||||
// Generate random number for id/for attribute values for controls
|
// Generate random number for id/for attribute values for controls
|
||||||
player.random = Math.floor(Math.random() * (10000));
|
player.random = Math.floor(Math.random() * (10000));
|
||||||
|
|
||||||
|
// If there's full support
|
||||||
|
if(player.supported.full) {
|
||||||
// Inject custom controls
|
// Inject custom controls
|
||||||
_injectControls();
|
_injectControls();
|
||||||
|
|
||||||
@ -1284,6 +1541,11 @@
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Display duration if available
|
||||||
|
if(config.displayDuration) {
|
||||||
|
_displayDuration();
|
||||||
|
}
|
||||||
|
|
||||||
// Set up aria-label for Play button with the title option
|
// Set up aria-label for Play button with the title option
|
||||||
_setupAria();
|
_setupAria();
|
||||||
|
|
||||||
@ -1300,7 +1562,13 @@
|
|||||||
_listeners();
|
_listeners();
|
||||||
}
|
}
|
||||||
|
|
||||||
_init();
|
// Successful setup
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!_init()) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
media: player.media,
|
media: player.media,
|
||||||
@ -1315,39 +1583,69 @@
|
|||||||
toggleCaptions: _toggleCaptions,
|
toggleCaptions: _toggleCaptions,
|
||||||
source: _parseSource,
|
source: _parseSource,
|
||||||
poster: _updatePoster,
|
poster: _updatePoster,
|
||||||
support: function(mimeType) { return _support(player, mimeType); }
|
support: function(mimeType) { return _supportMime(player, mimeType); }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check for support
|
||||||
|
api.supported = function(type) {
|
||||||
|
var browser = _browserSniff(),
|
||||||
|
oldIE = (browser.name === "IE" && browser.version <= 9),
|
||||||
|
iPhone = /iPhone|iPod/i.test(navigator.userAgent),
|
||||||
|
audio = !!document.createElement("audio").canPlayType,
|
||||||
|
video = !!document.createElement("video").canPlayType,
|
||||||
|
basic, full;
|
||||||
|
|
||||||
|
switch (type) {
|
||||||
|
case "video":
|
||||||
|
basic = video;
|
||||||
|
full = (basic && (!oldIE && !iPhone));
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "audio":
|
||||||
|
basic = audio;
|
||||||
|
full = (basic && !oldIE);
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
basic = (audio && video);
|
||||||
|
full = (basic && !oldIE);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
basic: basic,
|
||||||
|
full: full
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
// Expose setup function
|
// Expose setup function
|
||||||
api.setup = function(options){
|
api.setup = function(options){
|
||||||
// Extend the default options with user specified
|
// Extend the default options with user specified
|
||||||
config = _extend(defaults, options);
|
config = _extend(defaults, options);
|
||||||
|
|
||||||
// If enabled carry on
|
// Bail if disabled or no basic support
|
||||||
// You may want to disable certain UAs etc
|
// You may want to disable certain UAs etc
|
||||||
if(!config.enabled) {
|
if(!config.enabled || !api.supported().basic) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the players
|
// Get the players
|
||||||
var elements = document.querySelectorAll(config.selectors.container), players = [];
|
var elements = document.querySelectorAll(config.selectors.container),
|
||||||
|
players = [];
|
||||||
|
|
||||||
// Create a player instance for each element
|
// Create a player instance for each element
|
||||||
for (var i = elements.length - 1; i >= 0; i--) {
|
for (var i = elements.length - 1; i >= 0; i--) {
|
||||||
// Get the current element
|
// Get the current element
|
||||||
var element = elements[i];
|
var element = elements[i];
|
||||||
|
|
||||||
// Disabled for <video> for iPhone
|
|
||||||
// Since it doesn't allow customisation
|
|
||||||
if (element.querySelectorAll("audio, video")[0].tagName === "VIDEO"
|
|
||||||
&& /iPhone/i.test(navigator.userAgent)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Setup a player instance and add to the element
|
// Setup a player instance and add to the element
|
||||||
if(typeof element.plyr === "undefined") {
|
if(typeof element.plyr === "undefined") {
|
||||||
element.plyr = new Plyr(element);
|
// Create new instance
|
||||||
|
var instance = new Plyr(element);
|
||||||
|
|
||||||
|
// Set plyr to false if setup failed
|
||||||
|
element.plyr = (Object.keys(instance).length ? instance : false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add to return array
|
// Add to return array
|
||||||
@ -1356,4 +1654,5 @@
|
|||||||
|
|
||||||
return players;
|
return players;
|
||||||
}
|
}
|
||||||
|
|
||||||
}(this.plyr = this.plyr || {}));
|
}(this.plyr = this.plyr || {}));
|
@ -23,10 +23,17 @@
|
|||||||
@control-color-inactive: @gray;
|
@control-color-inactive: @gray;
|
||||||
@control-color-hover: #fff;
|
@control-color-hover: #fff;
|
||||||
|
|
||||||
|
// Tooltips
|
||||||
|
@tooltip-bg: @controls-bg;
|
||||||
|
@tooltip-color: #fff;
|
||||||
|
@tooltip-padding: @control-spacing;
|
||||||
|
@tooltip-arrow-size: 5px;
|
||||||
|
@tooltip-radius: 3px;
|
||||||
|
|
||||||
// Progress
|
// Progress
|
||||||
@progress-bg: lighten(@gray, 10%);
|
@progress-bg: rgba(red(@gray), green(@gray), blue(@gray), .2);
|
||||||
@progress-playing-bg: @blue;
|
@progress-playing-bg: @blue;
|
||||||
@progress-buffered-bg: @gray;
|
@progress-buffered-bg: rgba(red(@gray), green(@gray), blue(@gray), .25);
|
||||||
@progress-loading-size: 40px;
|
@progress-loading-size: 40px;
|
||||||
@progress-loading-bg: rgba(0,0,0, .15);
|
@progress-loading-bg: rgba(0,0,0, .15);
|
||||||
|
|
||||||
@ -119,7 +126,6 @@
|
|||||||
position: relative;
|
position: relative;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
min-width: 290px;
|
min-width: 290px;
|
||||||
overflow: hidden; // For the controls
|
|
||||||
|
|
||||||
// border-box everything
|
// border-box everything
|
||||||
// http://paulirish.com/2012/box-sizing-border-box-ftw/
|
// http://paulirish.com/2012/box-sizing-border-box-ftw/
|
||||||
@ -173,21 +179,21 @@
|
|||||||
.clearfix();
|
.clearfix();
|
||||||
.font-smoothing();
|
.font-smoothing();
|
||||||
position: relative;
|
position: relative;
|
||||||
padding: (@control-spacing * 2) @control-spacing @control-spacing;
|
padding: @control-spacing;
|
||||||
background: @controls-bg;
|
background: @controls-bg;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
// Layout
|
// Layout
|
||||||
&-sound {
|
&-right {
|
||||||
display: block;
|
display: block;
|
||||||
margin: @control-spacing auto 0;
|
margin: @control-spacing auto 0;
|
||||||
}
|
}
|
||||||
@media (min-width: @bp-control-split) {
|
@media (min-width: @bp-control-split) {
|
||||||
&-playback {
|
&-left {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
&-sound {
|
&-right {
|
||||||
float: right;
|
float: right;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
@ -227,10 +233,11 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Specificity for overriding .inverted
|
||||||
button:focus,
|
button:focus,
|
||||||
button:hover,
|
button:hover,
|
||||||
input:focus + label,
|
[type="checkbox"]:focus + label,
|
||||||
input + label:hover {
|
[type="checkbox"] + label:hover {
|
||||||
background: @control-bg-hover;
|
background: @control-bg-hover;
|
||||||
color: @control-color-hover;
|
color: @control-color-hover;
|
||||||
}
|
}
|
||||||
@ -252,13 +259,77 @@
|
|||||||
font-size: @font-size-small;
|
font-size: @font-size-small;
|
||||||
.font-smoothing();
|
.font-smoothing();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Media duration hidden on small screens
|
||||||
|
.player-time + .player-time {
|
||||||
|
display: none;
|
||||||
|
|
||||||
|
@media (min-width: @bp-control-split) {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add a slash in before
|
||||||
|
&::before {
|
||||||
|
content: "\2044";
|
||||||
|
margin-right: @control-spacing;
|
||||||
|
color: darken(@control-color, 30%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Tooltips
|
||||||
|
&-tooltip {
|
||||||
|
visibility: hidden;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 2;
|
||||||
|
bottom: 100%;
|
||||||
|
margin-bottom: @tooltip-padding;
|
||||||
|
padding: @tooltip-padding (@tooltip-padding * 1.5);
|
||||||
|
|
||||||
|
opacity: 0;
|
||||||
|
background: @tooltip-bg;
|
||||||
|
border-radius: @tooltip-radius;
|
||||||
|
color: @tooltip-color;
|
||||||
|
font-size: @font-size-small;
|
||||||
|
line-height: 1.5;
|
||||||
|
font-weight: 600;
|
||||||
|
|
||||||
|
transform: translate(-50%, (@tooltip-padding * 3));
|
||||||
|
transition: transform .2s .2s ease, opacity .2s .2s ease;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
content: "";
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
bottom: -@tooltip-arrow-size;
|
||||||
|
margin-left: -@tooltip-arrow-size;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
transition: inherit;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: @tooltip-arrow-size @tooltip-arrow-size 0 @tooltip-arrow-size;
|
||||||
|
border-color: @controls-bg transparent transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
label:hover .player-tooltip,
|
||||||
|
input:focus + label .player-tooltip,
|
||||||
|
button:hover .player-tooltip,
|
||||||
|
button:focus .player-tooltip {
|
||||||
|
visibility: visible;
|
||||||
|
opacity: 1;
|
||||||
|
transform: translate(-50%, 0);
|
||||||
|
}
|
||||||
|
label:hover .player-tooltip,
|
||||||
|
button:hover .player-tooltip {
|
||||||
|
z-index: 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Player progress
|
// Player progress
|
||||||
// <progress> element
|
// <progress> element
|
||||||
&-progress {
|
&-progress {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
bottom: 100%;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -308,7 +379,7 @@
|
|||||||
// <input[type='range']> element
|
// <input[type='range']> element
|
||||||
// Specificity is for bootstrap compatibility
|
// Specificity is for bootstrap compatibility
|
||||||
&-seek[type=range] {
|
&-seek[type=range] {
|
||||||
z-index: 3;
|
z-index: 4;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
|
|
||||||
@ -442,6 +513,20 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Hide sound controls on iOS
|
||||||
|
// It's not supported to change volume using JavaScript:
|
||||||
|
// https://developer.apple.com/library/safari/documentation/AudioVideo/Conceptual/Using_HTML5_Audio_Video/Device-SpecificConsiderations/Device-SpecificConsiderations.html
|
||||||
|
&.ios &-volume,
|
||||||
|
&.ios [data-player='mute'],
|
||||||
|
&.ios [data-player='mute'] + label,
|
||||||
|
&-audio.ios &-controls-right {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
// Center buttons so it looks less odd
|
||||||
|
&-audio.ios &-controls-left {
|
||||||
|
float: none;
|
||||||
|
}
|
||||||
|
|
||||||
// Full screen mode
|
// Full screen mode
|
||||||
&-fullscreen,
|
&-fullscreen,
|
||||||
&.fullscreen-active {
|
&.fullscreen-active {
|
||||||
@ -455,13 +540,13 @@
|
|||||||
z-index: 10000000;
|
z-index: 10000000;
|
||||||
background: #000;
|
background: #000;
|
||||||
|
|
||||||
|
video {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
.player-video-wrapper {
|
.player-video-wrapper {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
video {
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
.player-captions {
|
.player-captions {
|
||||||
top: auto;
|
top: auto;
|
||||||
bottom: 90px;
|
bottom: 90px;
|
||||||
@ -480,6 +565,17 @@
|
|||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Hide controls when playing in full screen
|
||||||
|
&.fullscreen-hide-controls.playing .player-controls {
|
||||||
|
transform: translateY(100%) translateY(@control-spacing / 2);
|
||||||
|
transition: transform .3s 1s ease;
|
||||||
|
|
||||||
|
&.hover {
|
||||||
|
transform: translateY(0);
|
||||||
|
transition-delay: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Change icons on state change
|
// Change icons on state change
|
||||||
@ -506,10 +602,4 @@
|
|||||||
&.fullscreen-enabled [data-player='fullscreen'] + label {
|
&.fullscreen-enabled [data-player='fullscreen'] + label {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Full browser view hides toggle
|
|
||||||
&-fullscreen [data-player='fullscreen'],
|
|
||||||
&-fullscreen [data-player='fullscreen'] + label {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
@ -23,14 +23,21 @@ $control-color: $gray-light;
|
|||||||
$control-color-inactive: $gray;
|
$control-color-inactive: $gray;
|
||||||
$control-color-hover: #fff;
|
$control-color-hover: #fff;
|
||||||
|
|
||||||
|
// Tooltips
|
||||||
|
$tooltip-bg: $controls-bg;
|
||||||
|
$tooltip-color: #fff;
|
||||||
|
$tooltip-padding: $control-spacing;
|
||||||
|
$tooltip-arrow-size: 5px;
|
||||||
|
$tooltip-radius: 3px;
|
||||||
|
|
||||||
// Progress
|
// Progress
|
||||||
$progress-bg: lighten($gray, 10%);
|
$progress-bg: rgba(red($gray), green($gray), blue($gray), .2);
|
||||||
$progress-playing-bg: $blue;
|
$progress-playing-bg: $blue;
|
||||||
$progress-buffered-bg: $gray;
|
$progress-buffered-bg: rgba(red($gray), green($gray), blue($gray), .25);
|
||||||
$progress-loading-size: 40px;
|
$progress-loading-size: 40px;
|
||||||
$progress-loading-bg: rgba(0,0,0, .15);
|
$progress-loading-bg: rgba(0,0,0, .15);
|
||||||
|
|
||||||
// Range
|
// Volume
|
||||||
$volume-track-height: 6px;
|
$volume-track-height: 6px;
|
||||||
$volume-track-bg: $gray;
|
$volume-track-bg: $gray;
|
||||||
$volume-thumb-height: ($volume-track-height * 2);
|
$volume-thumb-height: ($volume-track-height * 2);
|
||||||
@ -72,7 +79,7 @@ $bp-captions-large: 768px; // When captions jump to the larger font size
|
|||||||
// Animation
|
// Animation
|
||||||
// ---------------------------------------
|
// ---------------------------------------
|
||||||
@keyframes progress {
|
@keyframes progress {
|
||||||
to { background-position: @progress-loading-size 0; }
|
to { background-position: $progress-loading-size 0; }
|
||||||
}
|
}
|
||||||
|
|
||||||
// <input type="range"> styling
|
// <input type="range"> styling
|
||||||
@ -94,29 +101,31 @@ $bp-captions-large: 768px; // When captions jump to the larger font size
|
|||||||
border: 0;
|
border: 0;
|
||||||
border-radius: ($volume-track-height / 2);
|
border-radius: ($volume-track-height / 2);
|
||||||
}
|
}
|
||||||
@mixin seek-thumb() {
|
@mixin seek-thumb()
|
||||||
|
{
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border: 0;
|
border: 0;
|
||||||
width: ($control-spacing * 2);
|
width: ($control-spacing * 2);
|
||||||
height: $control-spacing;
|
height: $control-spacing;
|
||||||
}
|
}
|
||||||
@mixin seek-track() {
|
@mixin seek-track()
|
||||||
|
{
|
||||||
background: none;
|
background: none;
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Font smoothing
|
// Font smoothing
|
||||||
// ---------------------------------------
|
// ---------------------------------------
|
||||||
@mixin font-smoothing($mode: on) when ($mode = on)
|
@mixin font-smoothing($mode: on)
|
||||||
{
|
{
|
||||||
|
@if $mode == 'on' {
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
}
|
} @else if $mode == 'off' {
|
||||||
@mixin font-smoothing($mode: on) when ($mode = off)
|
|
||||||
{
|
|
||||||
-moz-osx-font-smoothing: auto;
|
-moz-osx-font-smoothing: auto;
|
||||||
-webkit-font-smoothing: subpixel-antialiased;
|
-webkit-font-smoothing: subpixel-antialiased;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Styles
|
// Styles
|
||||||
// -------------------------------
|
// -------------------------------
|
||||||
@ -125,7 +134,6 @@ $bp-captions-large: 768px; // When captions jump to the larger font size
|
|||||||
position: relative;
|
position: relative;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
min-width: 290px;
|
min-width: 290px;
|
||||||
overflow: hidden; // For the controls
|
|
||||||
|
|
||||||
// border-box everything
|
// border-box everything
|
||||||
// http://paulirish.com/2012/box-sizing-border-box-ftw/
|
// http://paulirish.com/2012/box-sizing-border-box-ftw/
|
||||||
@ -179,21 +187,21 @@ $bp-captions-large: 768px; // When captions jump to the larger font size
|
|||||||
@include clearfix();
|
@include clearfix();
|
||||||
@include font-smoothing();
|
@include font-smoothing();
|
||||||
position: relative;
|
position: relative;
|
||||||
padding: ($control-spacing * 2) $control-spacing $control-spacing;
|
padding: $control-spacing;
|
||||||
background: $controls-bg;
|
background: $controls-bg;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
// Layout
|
// Layout
|
||||||
&-sound {
|
&-right {
|
||||||
display: block;
|
display: block;
|
||||||
margin: $control-spacing auto 0;
|
margin: $control-spacing auto 0;
|
||||||
}
|
}
|
||||||
@media (min-width: $bp-control-split) {
|
@media (min-width: $bp-control-split) {
|
||||||
&-playback {
|
&-left {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
&-sound {
|
&-right {
|
||||||
float: right;
|
float: right;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
@ -232,16 +240,19 @@ $bp-captions-large: 768px; // When captions jump to the larger font size
|
|||||||
background: transparent;
|
background: transparent;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
input:focus + label,
|
|
||||||
button:focus {
|
// Specificity for overriding .inverted
|
||||||
@include tab-focus();
|
button:focus,
|
||||||
color: $control-color-focus;
|
|
||||||
}
|
|
||||||
button:hover,
|
button:hover,
|
||||||
input + label:hover {
|
[type="checkbox"]:focus + label,
|
||||||
|
[type="checkbox"] + label:hover {
|
||||||
background: $control-bg-hover;
|
background: $control-bg-hover;
|
||||||
color: $control-color-hover;
|
color: $control-color-hover;
|
||||||
}
|
}
|
||||||
|
button:focus,
|
||||||
|
input:focus + label {
|
||||||
|
outline: 0;
|
||||||
|
}
|
||||||
.icon-exit-fullscreen,
|
.icon-exit-fullscreen,
|
||||||
.icon-muted,
|
.icon-muted,
|
||||||
.icon-captions-on {
|
.icon-captions-on {
|
||||||
@ -256,13 +267,77 @@ $bp-captions-large: 768px; // When captions jump to the larger font size
|
|||||||
font-size: $font-size-small;
|
font-size: $font-size-small;
|
||||||
@include font-smoothing();
|
@include font-smoothing();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Media duration hidden on small screens
|
||||||
|
.player-time + .player-time {
|
||||||
|
display: none;
|
||||||
|
|
||||||
|
@media (min-width: $bp-control-split) {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add a slash in before
|
||||||
|
&::before {
|
||||||
|
content: "\2044";
|
||||||
|
margin-right: $control-spacing;
|
||||||
|
color: darken($control-color, 30%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Tooltips
|
||||||
|
&-tooltip {
|
||||||
|
visibility: hidden;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 2;
|
||||||
|
bottom: 100%;
|
||||||
|
margin-bottom: $tooltip-padding;
|
||||||
|
padding: $tooltip-padding ($tooltip-padding * 1.5);
|
||||||
|
|
||||||
|
opacity: 0;
|
||||||
|
background: $tooltip-bg;
|
||||||
|
border-radius: $tooltip-radius;
|
||||||
|
color: $tooltip-color;
|
||||||
|
font-size: $font-size-small;
|
||||||
|
line-height: 1.5;
|
||||||
|
font-weight: 600;
|
||||||
|
|
||||||
|
transform: translate(-50%, ($tooltip-padding * 3));
|
||||||
|
transition: transform .2s .2s ease, opacity .2s .2s ease;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
content: "";
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
bottom: -$tooltip-arrow-size;
|
||||||
|
margin-left: -$tooltip-arrow-size;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
transition: inherit;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: $tooltip-arrow-size $tooltip-arrow-size 0 $tooltip-arrow-size;
|
||||||
|
border-color: $controls-bg transparent transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
label:hover .player-tooltip,
|
||||||
|
input:focus + label .player-tooltip,
|
||||||
|
button:hover .player-tooltip,
|
||||||
|
button:focus .player-tooltip {
|
||||||
|
visibility: visible;
|
||||||
|
opacity: 1;
|
||||||
|
transform: translate(-50%, 0);
|
||||||
|
}
|
||||||
|
label:hover .player-tooltip,
|
||||||
|
button:hover .player-tooltip {
|
||||||
|
z-index: 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Player progress
|
// Player progress
|
||||||
// <progress> element
|
// <progress> element
|
||||||
&-progress {
|
&-progress {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
bottom: 100%;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -276,8 +351,9 @@ $bp-captions-large: 768px; // When captions jump to the larger font size
|
|||||||
left: 0;
|
left: 0;
|
||||||
top: 0;
|
top: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: $control-spacing;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
|
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
@ -285,7 +361,6 @@ $bp-captions-large: 768px; // When captions jump to the larger font size
|
|||||||
border: none;
|
border: none;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
&-buffer[value],
|
&-buffer[value],
|
||||||
&-played[value] {
|
&-played[value] {
|
||||||
&::-webkit-progress-bar {
|
&::-webkit-progress-bar {
|
||||||
@ -312,7 +387,7 @@ $bp-captions-large: 768px; // When captions jump to the larger font size
|
|||||||
// <input[type='range']> element
|
// <input[type='range']> element
|
||||||
// Specificity is for bootstrap compatibility
|
// Specificity is for bootstrap compatibility
|
||||||
&-seek[type=range] {
|
&-seek[type=range] {
|
||||||
z-index: 3;
|
z-index: 4;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
|
|
||||||
@ -387,6 +462,7 @@ $bp-captions-large: 768px; // When captions jump to the larger font size
|
|||||||
// <input[type='range']> element
|
// <input[type='range']> element
|
||||||
// Specificity is for bootstrap compatibility
|
// Specificity is for bootstrap compatibility
|
||||||
&-volume[type=range] {
|
&-volume[type=range] {
|
||||||
|
display: inline-block;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
-moz-appearance: none;
|
-moz-appearance: none;
|
||||||
@ -398,20 +474,20 @@ $bp-captions-large: 768px; // When captions jump to the larger font size
|
|||||||
|
|
||||||
// Webkit
|
// Webkit
|
||||||
&::-webkit-slider-runnable-track {
|
&::-webkit-slider-runnable-track {
|
||||||
@include range-track();
|
@include volume-track();
|
||||||
}
|
}
|
||||||
&::-webkit-slider-thumb {
|
&::-webkit-slider-thumb {
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
margin-top: -(($volume-thumb-height - $volume-track-height) / 2);
|
margin-top: -(($volume-thumb-height - $volume-track-height) / 2);
|
||||||
@include range-thumb();
|
@include volume-thumb();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Mozilla
|
// Mozilla
|
||||||
&::-moz-range-track {
|
&::-moz-range-track {
|
||||||
@include range-track();
|
@include volume-track();
|
||||||
}
|
}
|
||||||
&::-moz-range-thumb {
|
&::-moz-range-thumb {
|
||||||
@include range-thumb();
|
@include volume-thumb();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Microsoft
|
// Microsoft
|
||||||
@ -424,10 +500,10 @@ $bp-captions-large: 768px; // When captions jump to the larger font size
|
|||||||
}
|
}
|
||||||
&::-ms-fill-lower,
|
&::-ms-fill-lower,
|
||||||
&::-ms-fill-upper {
|
&::-ms-fill-upper {
|
||||||
@include range-track();
|
@include volume-track();
|
||||||
}
|
}
|
||||||
&::-ms-thumb {
|
&::-ms-thumb {
|
||||||
@include range-thumb();
|
@include volume-thumb();
|
||||||
}
|
}
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
@ -445,6 +521,20 @@ $bp-captions-large: 768px; // When captions jump to the larger font size
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Hide sound controls on iOS
|
||||||
|
// It's not supported to change volume using JavaScript:
|
||||||
|
// https://developer.apple.com/library/safari/documentation/AudioVideo/Conceptual/Using_HTML5_Audio_Video/Device-SpecificConsiderations/Device-SpecificConsiderations.html
|
||||||
|
&.ios &-volume,
|
||||||
|
&.ios [data-player='mute'],
|
||||||
|
&.ios [data-player='mute'] + label,
|
||||||
|
&-audio.ios &-controls-right {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
// Center buttons so it looks less odd
|
||||||
|
&-audio.ios &-controls-left {
|
||||||
|
float: none;
|
||||||
|
}
|
||||||
|
|
||||||
// Full screen mode
|
// Full screen mode
|
||||||
&-fullscreen,
|
&-fullscreen,
|
||||||
&.fullscreen-active {
|
&.fullscreen-active {
|
||||||
@ -458,13 +548,13 @@ $bp-captions-large: 768px; // When captions jump to the larger font size
|
|||||||
z-index: 10000000;
|
z-index: 10000000;
|
||||||
background: #000;
|
background: #000;
|
||||||
|
|
||||||
|
video {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
.player-video-wrapper {
|
.player-video-wrapper {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
video {
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
.player-captions {
|
.player-captions {
|
||||||
top: auto;
|
top: auto;
|
||||||
bottom: 90px;
|
bottom: 90px;
|
||||||
@ -483,6 +573,17 @@ $bp-captions-large: 768px; // When captions jump to the larger font size
|
|||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Hide controls when playing in full screen
|
||||||
|
&.fullscreen-hide-controls.playing .player-controls {
|
||||||
|
transform: translateY(100%) translateY($control-spacing / 2);
|
||||||
|
transition: transform .3s 1s ease;
|
||||||
|
|
||||||
|
&.hover {
|
||||||
|
transform: translateY(0);
|
||||||
|
transition-delay: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Change icons on state change
|
// Change icons on state change
|
||||||
@ -509,10 +610,4 @@ $bp-captions-large: 768px; // When captions jump to the larger font size
|
|||||||
&.fullscreen-enabled [data-player='fullscreen'] + label {
|
&.fullscreen-enabled [data-player='fullscreen'] + label {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Full browser view hides toggle
|
|
||||||
&-fullscreen [data-player='fullscreen'],
|
|
||||||
&-fullscreen [data-player='fullscreen'] + label {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
Reference in New Issue
Block a user