Compare commits
25 Commits
Author | SHA1 | Date | |
---|---|---|---|
d7cc29f2fb | |||
0505e49038 | |||
6ff1e47341 | |||
e72a91de6e | |||
52ec4c012d | |||
ae89c92ab6 | |||
57ad124ce8 | |||
a85d45d2e5 | |||
a6f57fc034 | |||
04c9653b86 | |||
b8cdc71001 | |||
277ebf0fd1 | |||
7682d998e7 | |||
05b9b9a831 | |||
eee699cec6 | |||
3c9e9862d8 | |||
39dc651a9d | |||
4effda125a | |||
bf9de231d8 | |||
ef12332505 | |||
1b735f1727 | |||
7f7ecf852e | |||
931672895f | |||
0952bc8239 | |||
7e7508ca82 |
41
changelog.md
41
changelog.md
@ -1,9 +1,42 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
# v1.8.4
|
## v1.8.12
|
||||||
|
- Vimeo keyboard focus fix (Fixes #317)
|
||||||
|
- Fix for Vimeo on basic support devices
|
||||||
|
|
||||||
|
## v1.8.11
|
||||||
|
- Fix for keyboard navigation on Vimeo (Fixes #317)
|
||||||
|
- Fix for bug introduced in v1.8.9 related to additional controls
|
||||||
|
- Vimeo API upgrade
|
||||||
|
- Fix for YouTube bug introduced in v1.8.9
|
||||||
|
- Added support for passing array to .setup() (Fixes #319)
|
||||||
|
|
||||||
|
## v1.8.10
|
||||||
|
- Fix for seek issues introduced in v1.8.9
|
||||||
|
|
||||||
|
## v1.8.9
|
||||||
|
- Fix for fullscreen not being defined (Fixes #295)
|
||||||
|
- Fix for multiline captions (Fixes #314)
|
||||||
|
- Clean up of type checks and fix for `restart()` (Fixes #315)
|
||||||
|
- Fix for `MEDIA_ERR_SRC_NOT_SUPPORTED` when calling `.source()` API method
|
||||||
|
|
||||||
|
## v1.8.8
|
||||||
|
- Added getCurrentTime API method (fixes #292)
|
||||||
|
- Fix for !hideControls on touch devices (fixes #303)
|
||||||
|
|
||||||
|
## v1.8.7
|
||||||
|
- Line height fix
|
||||||
|
|
||||||
|
## v1.8.6
|
||||||
|
- Reverted font size change
|
||||||
|
|
||||||
|
## v1.8.5
|
||||||
|
- Fixed overflow issues (fixes #286)
|
||||||
|
|
||||||
|
## v1.8.4
|
||||||
- Fix for large play button on small videos
|
- Fix for large play button on small videos
|
||||||
|
|
||||||
# v1.8.3
|
## v1.8.3
|
||||||
- Disabled iPad support for YouTube and Vimeo due to iOS limitations with iFrame playback
|
- Disabled iPad support for YouTube and Vimeo due to iOS limitations with iFrame playback
|
||||||
- Fixed IE11 icon loading (fixes #269)
|
- Fixed IE11 icon loading (fixes #269)
|
||||||
- Updated screenshot (fixes #281)
|
- Updated screenshot (fixes #281)
|
||||||
@ -12,10 +45,10 @@
|
|||||||
- Added HLS, Shaka and dash.js examples (see #235 for more)
|
- Added HLS, Shaka and dash.js examples (see #235 for more)
|
||||||
- Improvements for controls hiding and showing on touch devices
|
- Improvements for controls hiding and showing on touch devices
|
||||||
|
|
||||||
# v1.8.2
|
## v1.8.2
|
||||||
- Fixed event bubbling
|
- Fixed event bubbling
|
||||||
|
|
||||||
# v1.8.1
|
## v1.8.1
|
||||||
- Fixed inaccurate log message
|
- Fixed inaccurate log message
|
||||||
|
|
||||||
# v1.8.0
|
# v1.8.0
|
||||||
|
2
demo/dist/demo.css
vendored
2
demo/dist/demo.css
vendored
File diff suppressed because one or more lines are too long
@ -8,78 +8,78 @@
|
|||||||
|
|
||||||
// General functions
|
// General functions
|
||||||
;(function() {
|
;(function() {
|
||||||
document.body.addEventListener('ready', function(event) { console.log(event); });
|
document.body.addEventListener('ready', function(event) { console.log(event); });
|
||||||
|
|
||||||
|
// Setup the player
|
||||||
|
var instances = plyr.setup({
|
||||||
|
debug: true,
|
||||||
|
title: 'Video demo',
|
||||||
|
iconUrl: '../dist/plyr.svg',
|
||||||
|
tooltips: {
|
||||||
|
controls: true
|
||||||
|
},
|
||||||
|
captions: {
|
||||||
|
defaultActive: true
|
||||||
|
}
|
||||||
|
});
|
||||||
|
plyr.loadSprite('dist/demo.svg');
|
||||||
|
|
||||||
// Setup the player
|
// Plyr returns an array regardless
|
||||||
var instances = plyr.setup({
|
var player = instances[0].plyr;
|
||||||
debug: true,
|
|
||||||
title: 'Video demo',
|
|
||||||
iconUrl: '../dist/plyr.svg',
|
|
||||||
tooltips: {
|
|
||||||
controls: true
|
|
||||||
},
|
|
||||||
captions: {
|
|
||||||
defaultActive: true
|
|
||||||
}
|
|
||||||
});
|
|
||||||
plyr.loadSprite('dist/demo.svg');
|
|
||||||
|
|
||||||
// Plyr returns an array regardless
|
// Setup type toggle
|
||||||
var player = instances[0].plyr;
|
var buttons = document.querySelectorAll('[data-source]'),
|
||||||
|
types = {
|
||||||
|
video: 'video',
|
||||||
|
audio: 'audio',
|
||||||
|
youtube: 'youtube',
|
||||||
|
vimeo: 'vimeo'
|
||||||
|
},
|
||||||
|
currentType = window.location.hash.replace('#', ''),
|
||||||
|
historySupport = (window.history && window.history.pushState);
|
||||||
|
|
||||||
// Setup type toggle
|
// Bind to each button
|
||||||
var buttons = document.querySelectorAll('[data-source]'),
|
for (var i = buttons.length - 1; i >= 0; i--) {
|
||||||
types = {
|
buttons[i].addEventListener('click', function() {
|
||||||
video: 'video',
|
var type = this.getAttribute('data-source');
|
||||||
audio: 'audio',
|
|
||||||
youtube: 'youtube',
|
|
||||||
vimeo: 'vimeo'
|
|
||||||
},
|
|
||||||
currentType = window.location.hash.replace('#', ''),
|
|
||||||
historySupport = (window.history && window.history.pushState);
|
|
||||||
|
|
||||||
// Bind to each button
|
newSource(type);
|
||||||
for (var i = buttons.length - 1; i >= 0; i--) {
|
|
||||||
buttons[i].addEventListener('click', function() {
|
|
||||||
var type = this.getAttribute('data-source');
|
|
||||||
|
|
||||||
newSource(type);
|
if (historySupport) {
|
||||||
|
history.pushState({ 'type': type }, '', '#' + type);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if (historySupport) {
|
// List for backwards/forwards
|
||||||
history.pushState({ 'type': type }, '', '#' + type);
|
window.addEventListener('popstate', function(event) {
|
||||||
}
|
if(event.state && 'type' in event.state) {
|
||||||
});
|
newSource(event.state.type);
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// List for backwards/forwards
|
// On load
|
||||||
window.addEventListener('popstate', function(event) {
|
if(historySupport) {
|
||||||
if(event.state && 'type' in event.state) {
|
var video = !currentType.length;
|
||||||
newSource(event.state.type);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// On load
|
// If there's no current type set, assume video
|
||||||
if(historySupport) {
|
if(video) {
|
||||||
var video = !currentType.length;
|
currentType = types.video;
|
||||||
|
}
|
||||||
|
|
||||||
// If there's no current type set, assume video
|
// Replace current history state
|
||||||
if(video) {
|
if(currentType in types) {
|
||||||
currentType = types.video;
|
history.replaceState({ 'type': currentType }, '', (video ? '' : '#' + currentType));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Replace current history state
|
// If it's not video, load the source
|
||||||
if(currentType in types) {
|
if(currentType !== types.video) {
|
||||||
history.replaceState({ 'type': currentType }, '', (video ? '' : '#' + currentType));
|
newSource(currentType, true);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// If it's not video, load the source
|
// Toggle class on an element
|
||||||
if(currentType !== types.video) {
|
function toggleClass(element, className, state) {
|
||||||
newSource(currentType, true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Toggle class on an element
|
|
||||||
function toggleClass(element, className, state) {
|
|
||||||
if (element) {
|
if (element) {
|
||||||
if (element.classList) {
|
if (element.classList) {
|
||||||
element.classList[state ? 'add' : 'remove'](className);
|
element.classList[state ? 'add' : 'remove'](className);
|
||||||
@ -91,95 +91,95 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set a new source
|
// Set a new source
|
||||||
function newSource(type, init) {
|
function newSource(type, init) {
|
||||||
// Bail if new type isn't known, it's the current type, or current type is empty (video is default) and new type is video
|
// Bail if new type isn't known, it's the current type, or current type is empty (video is default) and new type is video
|
||||||
if(!(type in types) || (!init && type == currentType) || (!currentType.length && type == types.video)) {
|
if(!(type in types) || (!init && type == currentType) || (!currentType.length && type == types.video)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch(type) {
|
switch(type) {
|
||||||
case types.video:
|
case types.video:
|
||||||
player.source({
|
player.source({
|
||||||
type: 'video',
|
type: 'video',
|
||||||
title: 'View From A Blue Moon',
|
title: 'View From A Blue Moon',
|
||||||
sources: [{
|
sources: [{
|
||||||
src: 'https://cdn.selz.com/plyr/1.5/View_From_A_Blue_Moon_Trailer-HD.mp4',
|
src: 'https://cdn.selz.com/plyr/1.5/View_From_A_Blue_Moon_Trailer-HD.mp4',
|
||||||
type: 'video/mp4'
|
type: 'video/mp4'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
src: 'https://cdn.selz.com/plyr/1.5/View_From_A_Blue_Moon_Trailer-HD.webm',
|
src: 'https://cdn.selz.com/plyr/1.5/View_From_A_Blue_Moon_Trailer-HD.webm',
|
||||||
type: 'video/webm'
|
type: 'video/webm'
|
||||||
}],
|
}],
|
||||||
poster: 'https://cdn.selz.com/plyr/1.5/View_From_A_Blue_Moon_Trailer-HD.jpg',
|
poster: 'https://cdn.selz.com/plyr/1.5/View_From_A_Blue_Moon_Trailer-HD.jpg',
|
||||||
tracks: [{
|
tracks: [{
|
||||||
kind: 'captions',
|
kind: 'captions',
|
||||||
label: 'English',
|
label: 'English',
|
||||||
srclang:'en',
|
srclang:'en',
|
||||||
src: 'https://cdn.selz.com/plyr/1.5/View_From_A_Blue_Moon_Trailer-HD.en.vtt',
|
src: 'https://cdn.selz.com/plyr/1.5/View_From_A_Blue_Moon_Trailer-HD.en.vtt',
|
||||||
default: true
|
default: true
|
||||||
}]
|
}]
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case types.audio:
|
case types.audio:
|
||||||
player.source({
|
player.source({
|
||||||
type: 'audio',
|
type: 'audio',
|
||||||
title: 'Kishi Bashi – “It All Began With A Burst”',
|
title: 'Kishi Bashi – “It All Began With A Burst”',
|
||||||
sources: [{
|
sources: [{
|
||||||
src: 'https://cdn.selz.com/plyr/1.5/Kishi_Bashi_-_It_All_Began_With_a_Burst.mp3',
|
src: 'https://cdn.selz.com/plyr/1.5/Kishi_Bashi_-_It_All_Began_With_a_Burst.mp3',
|
||||||
type: 'audio/mp3'
|
type: 'audio/mp3'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
src: 'https://cdn.selz.com/plyr/1.5/Kishi_Bashi_-_It_All_Began_With_a_Burst.ogg',
|
src: 'https://cdn.selz.com/plyr/1.5/Kishi_Bashi_-_It_All_Began_With_a_Burst.ogg',
|
||||||
type: 'audio/ogg'
|
type: 'audio/ogg'
|
||||||
}]
|
}]
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case types.youtube:
|
case types.youtube:
|
||||||
player.source({
|
player.source({
|
||||||
type: 'video',
|
type: 'video',
|
||||||
title: 'View From A Blue Moon',
|
title: 'View From A Blue Moon',
|
||||||
sources: [{
|
sources: [{
|
||||||
src: 'bTqVqk7FSmY',
|
src: 'bTqVqk7FSmY',
|
||||||
type: 'youtube'
|
type: 'youtube'
|
||||||
}]
|
}]
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case types.vimeo:
|
case types.vimeo:
|
||||||
player.source({
|
player.source({
|
||||||
type: 'video',
|
type: 'video',
|
||||||
title: 'View From A Blue Moon',
|
title: 'View From A Blue Moon',
|
||||||
sources: [{
|
sources: [{
|
||||||
src: '143418951',
|
src: '143418951',
|
||||||
type: 'vimeo'
|
type: 'vimeo'
|
||||||
}]
|
}]
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set the current type for next time
|
// Set the current type for next time
|
||||||
currentType = type;
|
currentType = type;
|
||||||
|
|
||||||
// Remove active classes
|
// Remove active classes
|
||||||
for (var x = buttons.length - 1; x >= 0; x--) {
|
for (var x = buttons.length - 1; x >= 0; x--) {
|
||||||
toggleClass(buttons[x].parentElement, 'active', false);
|
toggleClass(buttons[x].parentElement, 'active', false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set active on parent
|
// Set active on parent
|
||||||
toggleClass(document.querySelector('[data-source="'+ type +'"]').parentElement, 'active', true);
|
toggleClass(document.querySelector('[data-source="'+ type +'"]').parentElement, 'active', true);
|
||||||
}
|
}
|
||||||
})();
|
})();
|
||||||
|
|
||||||
// Google analytics
|
// Google analytics
|
||||||
// For demo site (http://[www.]plyr.io) only
|
// For demo site (http://[www.]plyr.io) only
|
||||||
if(document.domain.indexOf('plyr.io') > -1) {
|
if(document.domain.indexOf('plyr.io') > -1) {
|
||||||
(function(i,s,o,g,r,a,m){i.GoogleAnalyticsObject=r;i[r]=i[r]||function(){
|
(function(i,s,o,g,r,a,m){i.GoogleAnalyticsObject=r;i[r]=i[r]||function(){
|
||||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||||
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
||||||
ga('create', 'UA-40881672-11', 'auto');
|
ga('create', 'UA-40881672-11', 'auto');
|
||||||
ga('send', 'pageview');
|
ga('send', 'pageview');
|
||||||
}
|
}
|
||||||
|
@ -21,7 +21,7 @@ video {
|
|||||||
.plyr--audio {
|
.plyr--audio {
|
||||||
max-width: @example-width-audio;
|
max-width: @example-width-audio;
|
||||||
}
|
}
|
||||||
.plyr--video::after {
|
.plyr__video-wrapper::after {
|
||||||
content: "";
|
content: "";
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
2
dist/plyr.css
vendored
2
dist/plyr.css
vendored
File diff suppressed because one or more lines are too long
4
dist/plyr.js
vendored
4
dist/plyr.js
vendored
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "plyr",
|
"name": "plyr",
|
||||||
"version": "1.8.4",
|
"version": "1.8.12",
|
||||||
"description": "A simple, accessible and customizable HTML5, YouTube and Vimeo media player",
|
"description": "A simple, accessible and customizable HTML5, YouTube and Vimeo media player",
|
||||||
"homepage": "http://plyr.io",
|
"homepage": "http://plyr.io",
|
||||||
"main": "src/js/plyr.js",
|
"main": "src/js/plyr.js",
|
||||||
|
30
readme.md
30
readme.md
@ -3,7 +3,7 @@ A simple, accessible and customizable HTML5, YouTube and Vimeo media player.
|
|||||||
|
|
||||||
[Checkout the demo](https://plyr.io)
|
[Checkout the demo](https://plyr.io)
|
||||||
|
|
||||||
[](https://plyr.io)
|
[](https://plyr.io)
|
||||||
|
|
||||||
## Why?
|
## Why?
|
||||||
We wanted a lightweight, accessible and customizable media player that supports [*modern*](#browser-support) browsers. Sure, there are many other players out there but we wanted to keep things simple, using the right elements for the job.
|
We wanted a lightweight, accessible and customizable media player that supports [*modern*](#browser-support) browsers. Sure, there are many other players out there but we wanted to keep things simple, using the right elements for the job.
|
||||||
@ -21,8 +21,8 @@ We wanted a lightweight, accessible and customizable media player that supports
|
|||||||
- **[Fullscreen](#fullscreen)** - supports native fullscreen with fallback to "full window" modes
|
- **[Fullscreen](#fullscreen)** - supports native fullscreen with fallback to "full window" modes
|
||||||
- **i18n support** - support for internationalization of controls
|
- **i18n support** - support for internationalization of controls
|
||||||
- **No dependencies** - written in "vanilla" JavaScript, no jQuery required
|
- **No dependencies** - written in "vanilla" JavaScript, no jQuery required
|
||||||
- **SASS and LESS provided** - If you like _these_ over plain CSS
|
- **SASS and LESS source** - to include in your build process
|
||||||
- **[Streaming](#streaming)** - Support for hls.js, Shaka and dash.js streaming playback
|
- **[Streaming](#streaming)** - support for hls.js, Shaka and dash.js streaming playback
|
||||||
|
|
||||||
Oh and yes, it works with Bootstrap.
|
Oh and yes, it works with Bootstrap.
|
||||||
|
|
||||||
@ -41,13 +41,14 @@ If you have any cool ideas or features, please let me know by [creating an issue
|
|||||||
|
|
||||||
## CMS plugins
|
## CMS plugins
|
||||||
|
|
||||||
### [WordPress](https://wordpress.org)
|
### [WordPress](https://wordpress.org/plugins/plyr/)
|
||||||
Created and maintained by Ryan Anthony Drake ([@iamryandrake](https://github.com/iamryandrake))
|
Created and maintained by Ryan Anthony Drake ([@iamryandrake](https://github.com/iamryandrake))
|
||||||
[Plyr on WordPress](https://wordpress.org/plugins/plyr/)
|
|
||||||
|
|
||||||
### [Neos](https://www.neos.io/)
|
### [Neos](https://packagist.org/packages/jonnitto/plyr)
|
||||||
Created and maintained by Jon Uhlmann ([@jonnitto](https://github.com/jonnitto))
|
Created and maintained by Jon Uhlmann ([@jonnitto](https://github.com/jonnitto))
|
||||||
[Plyr.io for Neos.io](https://packagist.org/packages/jonnitto/plyr)
|
|
||||||
|
### [Kirby](https://github.com/dpschen/kirby-plyrtag)
|
||||||
|
Created and maintained by Dominik Pschenitschni ([@dpschen](https://github.com/dpschen))
|
||||||
|
|
||||||
## Using package managers
|
## Using package managers
|
||||||
You can grab the source using one of the following package managers.
|
You can grab the source using one of the following package managers.
|
||||||
@ -120,7 +121,7 @@ Include the `plyr.js` script before the closing `</body>` tag and then call `ply
|
|||||||
If you want to use our CDN for the JavaScript, you can use the following:
|
If you want to use our CDN for the JavaScript, you can use the following:
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<script src="https://cdn.plyr.io/1.8.4/plyr.js"></script>
|
<script src="https://cdn.plyr.io/1.8.12/plyr.js"></script>
|
||||||
```
|
```
|
||||||
|
|
||||||
### CSS
|
### CSS
|
||||||
@ -133,16 +134,18 @@ Include the `plyr.css` stylsheet into your `<head>`
|
|||||||
If you want to use our CDN for the default CSS, you can use the following:
|
If you want to use our CDN for the default CSS, you can use the following:
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<link rel="stylesheet" href="https://cdn.plyr.io/1.8.4/plyr.css">
|
<link rel="stylesheet" href="https://cdn.plyr.io/1.8.12/plyr.css">
|
||||||
```
|
```
|
||||||
|
|
||||||
### SVG Sprite
|
### SVG Sprite
|
||||||
The SVG sprite is loaded automatically from our CDN. To change this, see the [#options](Options) below. For reference, the CDN hosted SVG sprite can be found at `https://cdn.plyr.io/1.8.4/plyr.svg`.
|
The SVG sprite is loaded automatically from our CDN. To change this, see the [#options](Options) below. For reference, the CDN hosted SVG sprite can be found at `https://cdn.plyr.io/1.8.12/plyr.svg`.
|
||||||
|
|
||||||
## Advanced
|
## Advanced
|
||||||
|
|
||||||
### LESS & SASS/SCSS
|
### LESS & SASS/SCSS
|
||||||
You can use `plyr.less` or `plyr.scss` file included in `/src` as part of your build and change variables to suit your design. The HTML markup uses the BEM methodology with `plyr` as the block, e.g. `.plyr__controls`. You can change the class hooks in the options to match any custom CSS you write. Check out the JavaScript source for more on this.
|
You can use `plyr.less` or `plyr.scss` file included in `/src` as part of your build and change variables to suit your design. The LESS and SASS require you to use the [autoprefixer](https://www.npmjs.com/package/gulp-autoprefixer) plugin (you should already) as all declerations use the W3C definitions - e.g. `appearance: none;` will be prefixed to `-webkit-appearance: none;` by autoprefixer.
|
||||||
|
|
||||||
|
The HTML markup uses the BEM methodology with `plyr` as the block, e.g. `.plyr__controls`. You can change the class hooks in the options to match any custom CSS you write. Check out the JavaScript source for more on this.
|
||||||
|
|
||||||
### SVG
|
### SVG
|
||||||
The icons used in the Plyr controls are loaded in an SVG sprite. The sprite is automatically loaded from our CDN by default. If you already have an icon build system in place, you can include the source plyr icons (see `/src/sprite` for source icons).
|
The icons used in the Plyr controls are loaded in an SVG sprite. The sprite is automatically loaded from our CDN by default. If you already have an icon build system in place, you can include the source plyr icons (see `/src/sprite` for source icons).
|
||||||
@ -535,6 +538,11 @@ Here's a list of the methods supported:
|
|||||||
<td>—</td>
|
<td>—</td>
|
||||||
<td>Reverses the effects of the <code>destroy()</code> method, restoring the UI and listeners.</td>
|
<td>Reverses the effects of the <code>destroy()</code> method, restoring the UI and listeners.</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><code>getCurrentTime()</code></td>
|
||||||
|
<td>—</td>
|
||||||
|
<td>Will return a float with the current time in seconds.</td>
|
||||||
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
353
src/js/plyr.js
353
src/js/plyr.js
@ -1,6 +1,6 @@
|
|||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
// Plyr
|
// Plyr
|
||||||
// plyr.js v1.8.4
|
// plyr.js v1.8.12
|
||||||
// https://github.com/selz/plyr
|
// https://github.com/selz/plyr
|
||||||
// License: The MIT License (MIT)
|
// License: The MIT License (MIT)
|
||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
@ -23,7 +23,6 @@
|
|||||||
}
|
}
|
||||||
}(typeof window !== 'undefined' ? window : this, function(window, document) {
|
}(typeof window !== 'undefined' ? window : this, function(window, document) {
|
||||||
'use strict';
|
'use strict';
|
||||||
/*global YT,$f*/
|
|
||||||
|
|
||||||
// Globals
|
// Globals
|
||||||
var fullscreen,
|
var fullscreen,
|
||||||
@ -44,7 +43,7 @@
|
|||||||
displayDuration: true,
|
displayDuration: true,
|
||||||
loadSprite: true,
|
loadSprite: true,
|
||||||
iconPrefix: 'plyr',
|
iconPrefix: 'plyr',
|
||||||
iconUrl: 'https://cdn.plyr.io/1.8.4/plyr.svg',
|
iconUrl: 'https://cdn.plyr.io/1.8.12/plyr.svg',
|
||||||
clickToPlay: true,
|
clickToPlay: true,
|
||||||
hideControls: true,
|
hideControls: true,
|
||||||
showPosterOnEnd: false,
|
showPosterOnEnd: false,
|
||||||
@ -146,7 +145,7 @@
|
|||||||
// URLs
|
// URLs
|
||||||
urls: {
|
urls: {
|
||||||
vimeo: {
|
vimeo: {
|
||||||
api: 'https://cdn.plyr.io/froogaloop/1.0.1/plyr.froogaloop.js',
|
api: 'https://player.vimeo.com/api/player.js',
|
||||||
},
|
},
|
||||||
youtube: {
|
youtube: {
|
||||||
api: 'https://www.youtube.com/iframe_api'
|
api: 'https://www.youtube.com/iframe_api'
|
||||||
@ -191,7 +190,7 @@
|
|||||||
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)) {
|
||||||
isIE = true;
|
isIE = true;
|
||||||
name = 'IE';
|
name = 'IE';
|
||||||
fullVersion = '11;';
|
fullVersion = '11';
|
||||||
}
|
}
|
||||||
// MSIE
|
// MSIE
|
||||||
else if ((verOffset = ua.indexOf('MSIE')) !== -1) {
|
else if ((verOffset = ua.indexOf('MSIE')) !== -1) {
|
||||||
@ -376,7 +375,7 @@
|
|||||||
// Set attributes
|
// Set attributes
|
||||||
function _setAttributes(element, attributes) {
|
function _setAttributes(element, attributes) {
|
||||||
for (var key in attributes) {
|
for (var key in attributes) {
|
||||||
element.setAttribute(key, (typeof attributes[key] === 'boolean' && attributes[key]) ? '' : attributes[key]);
|
element.setAttribute(key, (_is.boolean(attributes[key]) && attributes[key]) ? '' : attributes[key]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -464,7 +463,7 @@
|
|||||||
|
|
||||||
// Whether the listener is a capturing listener or not
|
// Whether the listener is a capturing listener or not
|
||||||
// Default to false
|
// Default to false
|
||||||
if (typeof useCapture !== 'boolean') {
|
if (!_is.boolean(useCapture)) {
|
||||||
useCapture = false;
|
useCapture = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -492,7 +491,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Default bubbles to false
|
// Default bubbles to false
|
||||||
if (typeof bubbles !== 'boolean') {
|
if (!_is.boolean(bubbles)) {
|
||||||
bubbles = false;
|
bubbles = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -515,7 +514,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Get state
|
// Get state
|
||||||
state = (typeof state === 'boolean' ? state : !target.getAttribute('aria-pressed'));
|
state = (_is.boolean(state) ? state : !target.getAttribute('aria-pressed'));
|
||||||
|
|
||||||
// Set the attribute on target
|
// Set the attribute on target
|
||||||
target.setAttribute('aria-pressed', state);
|
target.setAttribute('aria-pressed', state);
|
||||||
@ -570,6 +569,34 @@
|
|||||||
return destination;
|
return destination;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check variable types
|
||||||
|
var _is = {
|
||||||
|
object: function(input) {
|
||||||
|
return input !== null && typeof(input) === 'object';
|
||||||
|
},
|
||||||
|
array: function(input) {
|
||||||
|
return input !== null && typeof(input) === 'object' && input.constructor === Array;
|
||||||
|
},
|
||||||
|
number: function(input) {
|
||||||
|
return typeof(input) === 'number' && !isNaN(input - 0) || (typeof input == 'object' && input.constructor === Number);
|
||||||
|
},
|
||||||
|
string: function(input) {
|
||||||
|
return typeof input === 'string' || (typeof input == 'object' && input.constructor === String);
|
||||||
|
},
|
||||||
|
boolean: function(input) {
|
||||||
|
return typeof input === 'boolean';
|
||||||
|
},
|
||||||
|
nodeList: function(input) {
|
||||||
|
return input instanceof NodeList;
|
||||||
|
},
|
||||||
|
htmlElement: function(input) {
|
||||||
|
return input instanceof HTMLElement;
|
||||||
|
},
|
||||||
|
undefined: function(input) {
|
||||||
|
return typeof input === 'undefined';
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
// Fullscreen API
|
// Fullscreen API
|
||||||
function _fullscreen() {
|
function _fullscreen() {
|
||||||
var fullscreen = {
|
var fullscreen = {
|
||||||
@ -584,7 +611,7 @@
|
|||||||
browserPrefixes = 'webkit moz o ms khtml'.split(' ');
|
browserPrefixes = 'webkit moz o ms khtml'.split(' ');
|
||||||
|
|
||||||
// Check for native support
|
// Check for native support
|
||||||
if (typeof document.cancelFullScreen !== 'undefined') {
|
if (!_is.undefined(document.cancelFullScreen)) {
|
||||||
fullscreen.supportsFullScreen = true;
|
fullscreen.supportsFullScreen = true;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -592,12 +619,12 @@
|
|||||||
for (var i = 0, il = browserPrefixes.length; i < il; i++ ) {
|
for (var i = 0, il = browserPrefixes.length; i < il; i++ ) {
|
||||||
fullscreen.prefix = browserPrefixes[i];
|
fullscreen.prefix = browserPrefixes[i];
|
||||||
|
|
||||||
if (typeof document[fullscreen.prefix + 'CancelFullScreen'] !== 'undefined') {
|
if (!_is.undefined(document[fullscreen.prefix + 'CancelFullScreen'])) {
|
||||||
fullscreen.supportsFullScreen = true;
|
fullscreen.supportsFullScreen = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
// Special case for MS (when isn't it?)
|
// Special case for MS (when isn't it?)
|
||||||
else if (typeof document.msExitFullscreen !== 'undefined' && document.msFullscreenEnabled) {
|
else if (!_is.undefined(document.msExitFullscreen) && document.msFullscreenEnabled) {
|
||||||
fullscreen.prefix = 'ms';
|
fullscreen.prefix = 'ms';
|
||||||
fullscreen.supportsFullScreen = true;
|
fullscreen.supportsFullScreen = true;
|
||||||
break;
|
break;
|
||||||
@ -612,7 +639,7 @@
|
|||||||
fullscreen.fullScreenEventName = (fullscreen.prefix == 'ms' ? 'MSFullscreenChange' : fullscreen.prefix + 'fullscreenchange');
|
fullscreen.fullScreenEventName = (fullscreen.prefix == 'ms' ? 'MSFullscreenChange' : fullscreen.prefix + 'fullscreenchange');
|
||||||
|
|
||||||
fullscreen.isFullScreen = function(element) {
|
fullscreen.isFullScreen = function(element) {
|
||||||
if (typeof element === 'undefined') {
|
if (_is.undefined(element)) {
|
||||||
element = document.body;
|
element = document.body;
|
||||||
}
|
}
|
||||||
switch (this.prefix) {
|
switch (this.prefix) {
|
||||||
@ -625,7 +652,7 @@
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
fullscreen.requestFullScreen = function(element) {
|
fullscreen.requestFullScreen = function(element) {
|
||||||
if (typeof element === 'undefined') {
|
if (_is.undefined(element)) {
|
||||||
element = document.body;
|
element = document.body;
|
||||||
}
|
}
|
||||||
return (this.prefix === '') ? element.requestFullScreen() : element[this.prefix + (this.prefix == 'ms' ? 'RequestFullscreen' : 'RequestFullScreen')]();
|
return (this.prefix === '') ? element.requestFullScreen() : element[this.prefix + (this.prefix == 'ms' ? 'RequestFullscreen' : 'RequestFullScreen')]();
|
||||||
@ -878,7 +905,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Toggle state
|
// Toggle state
|
||||||
_toggleState(plyr.buttons.fullscreen, false);
|
if (plyr.buttons && plyr.buttons.fullscreen) {
|
||||||
|
_toggleState(plyr.buttons.fullscreen, false);
|
||||||
|
}
|
||||||
|
|
||||||
// Setup focus trap
|
// Setup focus trap
|
||||||
_focusTrap();
|
_focusTrap();
|
||||||
@ -887,6 +916,7 @@
|
|||||||
|
|
||||||
// Setup captions
|
// Setup captions
|
||||||
function _setupCaptions() {
|
function _setupCaptions() {
|
||||||
|
// Bail if not HTML5 video
|
||||||
if (plyr.type !== 'video') {
|
if (plyr.type !== 'video') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -1041,12 +1071,12 @@
|
|||||||
container.innerHTML = '';
|
container.innerHTML = '';
|
||||||
|
|
||||||
// Default to empty
|
// Default to empty
|
||||||
if (typeof caption === 'undefined') {
|
if (_is.undefined(caption)) {
|
||||||
caption = '';
|
caption = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set the span content
|
// Set the span content
|
||||||
if (typeof caption === 'string') {
|
if (_is.undefined(caption)) {
|
||||||
content.innerHTML = caption.trim();
|
content.innerHTML = caption.trim();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -1106,7 +1136,7 @@
|
|||||||
// Check time is a number, if not use currentTime
|
// Check time is a number, if not use currentTime
|
||||||
// IE has a bug where currentTime doesn't go to 0
|
// IE has a bug where currentTime doesn't go to 0
|
||||||
// https://twitter.com/Sam_Potts/status/573715746506731521
|
// https://twitter.com/Sam_Potts/status/573715746506731521
|
||||||
time = typeof time === 'number' ? time : plyr.media.currentTime;
|
time = _is.number(time) ? time : plyr.media.currentTime;
|
||||||
|
|
||||||
// If there's no subs available, bail
|
// If there's no subs available, bail
|
||||||
if (!plyr.captions[plyr.subcount]) {
|
if (!plyr.captions[plyr.subcount]) {
|
||||||
@ -1197,7 +1227,7 @@
|
|||||||
|
|
||||||
// Add elements to HTML5 media (source, tracks, etc)
|
// Add elements to HTML5 media (source, tracks, etc)
|
||||||
function _insertChildElements(type, attributes) {
|
function _insertChildElements(type, attributes) {
|
||||||
if (typeof attributes === 'string') {
|
if (_is.string(attributes)) {
|
||||||
_insertElement(type, plyr.media, { src: attributes });
|
_insertElement(type, plyr.media, { src: attributes });
|
||||||
}
|
}
|
||||||
else if (attributes.constructor === Array) {
|
else if (attributes.constructor === Array) {
|
||||||
@ -1247,13 +1277,13 @@
|
|||||||
if (config.selectors.controls.container !== null) {
|
if (config.selectors.controls.container !== null) {
|
||||||
container = config.selectors.controls.container;
|
container = config.selectors.controls.container;
|
||||||
|
|
||||||
if (typeof selector === 'string') {
|
if (_is.string(container)) {
|
||||||
container = document.querySelector(container);
|
container = document.querySelector(container);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Inject into the container by default
|
// Inject into the container by default
|
||||||
if (!(container instanceof HTMLElement)) {
|
if (!_is.htmlElement(container)) {
|
||||||
container = plyr.container
|
container = plyr.container
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1350,7 +1380,7 @@
|
|||||||
var label = config.i18n.play;
|
var label = config.i18n.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
|
||||||
if (typeof(config.title) !== 'undefined' && config.title.length) {
|
if (!_is.undefined(config.title) && config.title.length) {
|
||||||
label += ', ' + config.title;
|
label += ', ' + config.title;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1363,7 +1393,7 @@
|
|||||||
|
|
||||||
// Set iframe title
|
// Set iframe title
|
||||||
// https://github.com/Selz/plyr/issues/124
|
// https://github.com/Selz/plyr/issues/124
|
||||||
if (iframe instanceof HTMLElement) {
|
if (_is.htmlElement(iframe)) {
|
||||||
iframe.setAttribute('title', config.i18n.frameTitle.replace('{title}', config.title));
|
iframe.setAttribute('title', config.i18n.frameTitle.replace('{title}', config.title));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1443,7 +1473,7 @@
|
|||||||
container.setAttribute('id', id);
|
container.setAttribute('id', id);
|
||||||
|
|
||||||
// Setup API
|
// Setup API
|
||||||
if (typeof YT === 'object') {
|
if (_is.object(window.YT)) {
|
||||||
_youTubeReady(mediaId, container);
|
_youTubeReady(mediaId, container);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -1464,43 +1494,35 @@
|
|||||||
}
|
}
|
||||||
// Vimeo
|
// Vimeo
|
||||||
else if (plyr.type === 'vimeo') {
|
else if (plyr.type === 'vimeo') {
|
||||||
// Inject the iframe
|
// Vimeo needs an extra div to hide controls on desktop (which has full support)
|
||||||
var vimeo = document.createElement('iframe');
|
|
||||||
|
|
||||||
// Watch for iframe load
|
|
||||||
vimeo.loaded = false;
|
|
||||||
_on(vimeo, 'load', function() { vimeo.loaded = true; });
|
|
||||||
|
|
||||||
_setAttributes(vimeo, {
|
|
||||||
'src': 'https://player.vimeo.com/video/' + mediaId + '?player_id=' + id + '&api=1&badge=0&byline=0&portrait=0&title=0',
|
|
||||||
'id': id,
|
|
||||||
'allowfullscreen': '',
|
|
||||||
'frameborder': 0
|
|
||||||
});
|
|
||||||
|
|
||||||
// If full support, we can use custom controls (hiding Vimeos), if not, use Vimeo
|
|
||||||
if (plyr.supported.full) {
|
if (plyr.supported.full) {
|
||||||
container.appendChild(vimeo);
|
|
||||||
plyr.media.appendChild(container);
|
plyr.media.appendChild(container);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
plyr.media.appendChild(vimeo);
|
container = plyr.media;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set ID
|
||||||
|
container.setAttribute('id', id);
|
||||||
|
|
||||||
// Load the API if not already
|
// Load the API if not already
|
||||||
if (!('$f' in window)) {
|
if (!_is.object(window.Vimeo)) {
|
||||||
_injectScript(config.urls.vimeo.api);
|
_injectScript(config.urls.vimeo.api);
|
||||||
}
|
|
||||||
|
|
||||||
// Wait for fragaloop load
|
// Wait for fragaloop load
|
||||||
var vimeoTimer = window.setInterval(function() {
|
var vimeoTimer = window.setInterval(function() {
|
||||||
if ('$f' in window && vimeo.loaded) {
|
if (_is.object(window.Vimeo)) {
|
||||||
window.clearInterval(vimeoTimer);
|
window.clearInterval(vimeoTimer);
|
||||||
_vimeoReady.call(vimeo);
|
_vimeoReady(mediaId, container);
|
||||||
}
|
}
|
||||||
}, 50);
|
}, 50);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
_vimeoReady(mediaId, container);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// Soundcloud
|
// Soundcloud
|
||||||
|
// TODO: Currently unsupported and undocumented
|
||||||
else if (plyr.type === 'soundcloud') {
|
else if (plyr.type === 'soundcloud') {
|
||||||
// Inject the iframe
|
// Inject the iframe
|
||||||
var soundCloud = document.createElement('iframe');
|
var soundCloud = document.createElement('iframe');
|
||||||
@ -1556,7 +1578,7 @@
|
|||||||
|
|
||||||
// Setup instance
|
// Setup instance
|
||||||
// https://developers.google.com/youtube/iframe_api_reference
|
// https://developers.google.com/youtube/iframe_api_reference
|
||||||
plyr.embed = new YT.Player(container.id, {
|
plyr.embed = new window.YT.Player(container.id, {
|
||||||
videoId: videoId,
|
videoId: videoId,
|
||||||
playerVars: {
|
playerVars: {
|
||||||
autoplay: (config.autoplay ? 1 : 0),
|
autoplay: (config.autoplay ? 1 : 0),
|
||||||
@ -1684,86 +1706,94 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Vimeo ready
|
// Vimeo ready
|
||||||
function _vimeoReady() {
|
function _vimeoReady(mediaId, container) {
|
||||||
/* jshint validthis: true */
|
// Setup player
|
||||||
plyr.embed = $f(this);
|
plyr.embed = new window.Vimeo.Player(container.id, {
|
||||||
|
id: mediaId,
|
||||||
|
loop: config.loop,
|
||||||
|
autoplay: config.autoplay,
|
||||||
|
byline: false,
|
||||||
|
portrait: false,
|
||||||
|
title: false
|
||||||
|
});
|
||||||
|
|
||||||
// Setup on ready
|
// Create a faux HTML5 API using the Vimeo API
|
||||||
plyr.embed.addEvent('ready', function() {
|
plyr.media.play = function() {
|
||||||
|
plyr.embed.play();
|
||||||
// Create a faux HTML5 API using the Vimeo API
|
plyr.media.paused = false;
|
||||||
plyr.media.play = function() {
|
};
|
||||||
plyr.embed.api('play');
|
plyr.media.pause = function() {
|
||||||
plyr.media.paused = false;
|
plyr.embed.pause();
|
||||||
};
|
|
||||||
plyr.media.pause = function() {
|
|
||||||
plyr.embed.api('pause');
|
|
||||||
plyr.media.paused = true;
|
|
||||||
};
|
|
||||||
plyr.media.stop = function() {
|
|
||||||
plyr.embed.api('stop');
|
|
||||||
plyr.media.paused = true;
|
|
||||||
};
|
|
||||||
plyr.media.paused = true;
|
plyr.media.paused = true;
|
||||||
plyr.media.currentTime = 0;
|
};
|
||||||
|
plyr.media.stop = function() {
|
||||||
|
plyr.embed.stop();
|
||||||
|
plyr.media.paused = true;
|
||||||
|
};
|
||||||
|
plyr.media.paused = true;
|
||||||
|
plyr.media.currentTime = 0;
|
||||||
|
|
||||||
// Update UI
|
// Update UI
|
||||||
_embedReady();
|
_embedReady();
|
||||||
|
|
||||||
plyr.embed.api('getCurrentTime', function (value) {
|
plyr.embed.getCurrentTime().then(function (value) {
|
||||||
plyr.media.currentTime = value;
|
plyr.media.currentTime = value;
|
||||||
|
|
||||||
// Trigger timeupdate
|
// Trigger timeupdate
|
||||||
_triggerEvent(plyr.media, 'timeupdate');
|
_triggerEvent(plyr.media, 'timeupdate');
|
||||||
});
|
});
|
||||||
|
|
||||||
plyr.embed.api('getDuration', function(value) {
|
plyr.embed.getDuration().then(function(value) {
|
||||||
plyr.media.duration = value;
|
plyr.media.duration = value;
|
||||||
|
|
||||||
// Display duration if available
|
// Display duration if available
|
||||||
_displayDuration();
|
_displayDuration();
|
||||||
});
|
});
|
||||||
|
|
||||||
plyr.embed.addEvent('play', function() {
|
// TODO: Captions
|
||||||
plyr.media.paused = false;
|
/*if (config.captions.defaultActive) {
|
||||||
_triggerEvent(plyr.media, 'play');
|
plyr.embed.enableTextTrack('en');
|
||||||
_triggerEvent(plyr.media, 'playing');
|
}*/
|
||||||
});
|
|
||||||
|
|
||||||
plyr.embed.addEvent('pause', function() {
|
// Fix keyboard focus issues
|
||||||
plyr.media.paused = true;
|
// https://github.com/Selz/plyr/issues/317
|
||||||
_triggerEvent(plyr.media, 'pause');
|
plyr.embed.on('loaded', function() {
|
||||||
});
|
if(_is.htmlElement(plyr.embed.element)) {
|
||||||
|
plyr.embed.element.setAttribute('tabindex', '-1');
|
||||||
plyr.embed.addEvent('playProgress', function(data) {
|
|
||||||
plyr.media.seeking = false;
|
|
||||||
plyr.media.currentTime = data.seconds;
|
|
||||||
_triggerEvent(plyr.media, 'timeupdate');
|
|
||||||
});
|
|
||||||
|
|
||||||
plyr.embed.addEvent('loadProgress', function(data) {
|
|
||||||
plyr.media.buffered = data.percent;
|
|
||||||
_triggerEvent(plyr.media, 'progress');
|
|
||||||
|
|
||||||
if (parseInt(data.percent) === 1) {
|
|
||||||
// Trigger event
|
|
||||||
_triggerEvent(plyr.media, 'canplaythrough');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
plyr.embed.addEvent('finish', function() {
|
|
||||||
plyr.media.paused = true;
|
|
||||||
_triggerEvent(plyr.media, 'ended');
|
|
||||||
});
|
|
||||||
|
|
||||||
// Always seek to 0
|
|
||||||
// plyr.embed.api('seekTo', 0);
|
|
||||||
|
|
||||||
// Autoplay
|
|
||||||
if (config.autoplay) {
|
|
||||||
plyr.embed.api('play');
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
plyr.embed.on('play', function() {
|
||||||
|
plyr.media.paused = false;
|
||||||
|
_triggerEvent(plyr.media, 'play');
|
||||||
|
_triggerEvent(plyr.media, 'playing');
|
||||||
|
});
|
||||||
|
|
||||||
|
plyr.embed.on('pause', function() {
|
||||||
|
plyr.media.paused = true;
|
||||||
|
_triggerEvent(plyr.media, 'pause');
|
||||||
|
});
|
||||||
|
|
||||||
|
plyr.embed.on('timeupdate', function(data) {
|
||||||
|
plyr.media.seeking = false;
|
||||||
|
plyr.media.currentTime = data.seconds;
|
||||||
|
_triggerEvent(plyr.media, 'timeupdate');
|
||||||
|
});
|
||||||
|
|
||||||
|
plyr.embed.on('progress', function(data) {
|
||||||
|
plyr.media.buffered = data.percent;
|
||||||
|
_triggerEvent(plyr.media, 'progress');
|
||||||
|
|
||||||
|
if (parseInt(data.percent) === 1) {
|
||||||
|
// Trigger event
|
||||||
|
_triggerEvent(plyr.media, 'canplaythrough');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
plyr.embed.on('ended', function() {
|
||||||
|
plyr.media.paused = true;
|
||||||
|
_triggerEvent(plyr.media, 'ended');
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Soundcloud ready
|
// Soundcloud ready
|
||||||
@ -1878,7 +1908,7 @@
|
|||||||
// Rewind
|
// Rewind
|
||||||
function _rewind(seekTime) {
|
function _rewind(seekTime) {
|
||||||
// Use default if needed
|
// Use default if needed
|
||||||
if (typeof seekTime !== 'number') {
|
if (!_is.number(seekTime)) {
|
||||||
seekTime = config.seekTime;
|
seekTime = config.seekTime;
|
||||||
}
|
}
|
||||||
_seek(plyr.media.currentTime - seekTime);
|
_seek(plyr.media.currentTime - seekTime);
|
||||||
@ -1887,7 +1917,7 @@
|
|||||||
// Fast forward
|
// Fast forward
|
||||||
function _forward(seekTime) {
|
function _forward(seekTime) {
|
||||||
// Use default if needed
|
// Use default if needed
|
||||||
if (typeof seekTime !== 'number') {
|
if (!_is.number(seekTime)) {
|
||||||
seekTime = config.seekTime;
|
seekTime = config.seekTime;
|
||||||
}
|
}
|
||||||
_seek(plyr.media.currentTime + seekTime);
|
_seek(plyr.media.currentTime + seekTime);
|
||||||
@ -1901,11 +1931,11 @@
|
|||||||
duration = _getDuration();
|
duration = _getDuration();
|
||||||
|
|
||||||
// Explicit position
|
// Explicit position
|
||||||
if (typeof input === 'number') {
|
if (_is.number(input)) {
|
||||||
targetTime = input;
|
targetTime = input;
|
||||||
}
|
}
|
||||||
// Event
|
// Event
|
||||||
else if (input.type && _inArray(['input', 'change'], input.type)) {
|
else if (_is.object(input) && _inArray(['input', 'change'], input.type)) {
|
||||||
// It's the seek slider
|
// It's the seek slider
|
||||||
// Seek to the selected time
|
// Seek to the selected time
|
||||||
targetTime = ((input.target.value / input.target.max) * duration);
|
targetTime = ((input.target.value / input.target.max) * duration);
|
||||||
@ -1939,7 +1969,7 @@
|
|||||||
|
|
||||||
case 'vimeo':
|
case 'vimeo':
|
||||||
// Round to nearest second for vimeo
|
// Round to nearest second for vimeo
|
||||||
plyr.embed.api('seekTo', targetTime.toFixed(0));
|
plyr.embed.setCurrentTime(targetTime.toFixed(0));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'soundcloud':
|
case 'soundcloud':
|
||||||
@ -2060,7 +2090,9 @@
|
|||||||
_focusTrap(plyr.isFullscreen);
|
_focusTrap(plyr.isFullscreen);
|
||||||
|
|
||||||
// Set button state
|
// Set button state
|
||||||
_toggleState(plyr.buttons.fullscreen, plyr.isFullscreen);
|
if (plyr.buttons && plyr.buttons.fullscreen) {
|
||||||
|
_toggleState(plyr.buttons.fullscreen, plyr.isFullscreen);
|
||||||
|
}
|
||||||
|
|
||||||
// Trigger an event
|
// Trigger an event
|
||||||
_triggerEvent(plyr.container, plyr.isFullscreen ? 'enterfullscreen' : 'exitfullscreen', true);
|
_triggerEvent(plyr.container, plyr.isFullscreen ? 'enterfullscreen' : 'exitfullscreen', true);
|
||||||
@ -2082,7 +2114,7 @@
|
|||||||
// 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 muted !== 'boolean') {
|
if (!_is.boolean(muted)) {
|
||||||
muted = !plyr.media.muted;
|
muted = !plyr.media.muted;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2106,9 +2138,6 @@
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 'vimeo':
|
case 'vimeo':
|
||||||
plyr.embed.api('setVolume', plyr.media.muted ? 0 : parseFloat(config.volume / config.volumeMax));
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'soundcloud':
|
case 'soundcloud':
|
||||||
plyr.embed.setVolume(plyr.media.muted ? 0 : parseFloat(config.volume / config.volumeMax));
|
plyr.embed.setVolume(plyr.media.muted ? 0 : parseFloat(config.volume / config.volumeMax));
|
||||||
break;
|
break;
|
||||||
@ -2125,7 +2154,7 @@
|
|||||||
min = config.volumeMin;
|
min = config.volumeMin;
|
||||||
|
|
||||||
// Use default if no value specified
|
// Use default if no value specified
|
||||||
if (typeof volume === 'undefined') {
|
if (_is.undefined(volume)) {
|
||||||
volume = config.volume;
|
volume = config.volume;
|
||||||
|
|
||||||
if (config.storage.enabled && _storage().supported) {
|
if (config.storage.enabled && _storage().supported) {
|
||||||
@ -2161,16 +2190,12 @@
|
|||||||
|
|
||||||
// Embeds
|
// Embeds
|
||||||
if (_inArray(config.types.embed, plyr.type)) {
|
if (_inArray(config.types.embed, plyr.type)) {
|
||||||
// YouTube
|
|
||||||
switch(plyr.type) {
|
switch(plyr.type) {
|
||||||
case 'youtube':
|
case 'youtube':
|
||||||
plyr.embed.setVolume(plyr.media.volume * 100);
|
plyr.embed.setVolume(plyr.media.volume * 100);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'vimeo':
|
case 'vimeo':
|
||||||
plyr.embed.api('setVolume', plyr.media.volume);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'soundcloud':
|
case 'soundcloud':
|
||||||
plyr.embed.setVolume(plyr.media.volume);
|
plyr.embed.setVolume(plyr.media.volume);
|
||||||
break;
|
break;
|
||||||
@ -2237,7 +2262,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 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 show !== 'boolean') {
|
if (!_is.boolean(show)) {
|
||||||
show = (plyr.container.className.indexOf(config.classes.captions.active) === -1);
|
show = (plyr.container.className.indexOf(config.classes.captions.active) === -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2307,7 +2332,7 @@
|
|||||||
return _getPercentage(buffered.end(0), duration);
|
return _getPercentage(buffered.end(0), duration);
|
||||||
}
|
}
|
||||||
// YouTube returns between 0 and 1
|
// YouTube returns between 0 and 1
|
||||||
else if (typeof buffered === 'number') {
|
else if (_is.number(buffered)) {
|
||||||
return (buffered * 100);
|
return (buffered * 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2329,11 +2354,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Default to 0
|
// Default to 0
|
||||||
if (typeof value === 'undefined') {
|
if (_is.undefined(value)) {
|
||||||
value = 0;
|
value = 0;
|
||||||
}
|
}
|
||||||
// Default to buffer or bail
|
// Default to buffer or bail
|
||||||
if (typeof progress === 'undefined') {
|
if (_is.undefined(progress)) {
|
||||||
if (plyr.progress && plyr.progress.buffer) {
|
if (plyr.progress && plyr.progress.buffer) {
|
||||||
progress = plyr.progress.buffer;
|
progress = plyr.progress.buffer;
|
||||||
}
|
}
|
||||||
@ -2343,7 +2368,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// One progress element passed
|
// One progress element passed
|
||||||
if (progress instanceof HTMLElement) {
|
if (_is.htmlElement(progress)) {
|
||||||
progress.value = value;
|
progress.value = value;
|
||||||
}
|
}
|
||||||
// Object of progress + text element
|
// Object of progress + text element
|
||||||
@ -2424,7 +2449,7 @@
|
|||||||
// Update seek range and progress
|
// Update seek range and progress
|
||||||
function _updateSeekDisplay(time) {
|
function _updateSeekDisplay(time) {
|
||||||
// Default to 0
|
// Default to 0
|
||||||
if (typeof time !== 'number') {
|
if (!_is.number(time)) {
|
||||||
time = 0;
|
time = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2501,7 +2526,7 @@
|
|||||||
show = toggle;
|
show = toggle;
|
||||||
|
|
||||||
// Default to false if no boolean
|
// Default to false if no boolean
|
||||||
if (typeof toggle !== 'boolean') {
|
if (!_is.boolean(toggle)) {
|
||||||
if (toggle && toggle.type) {
|
if (toggle && toggle.type) {
|
||||||
// Is the enter fullscreen event
|
// Is the enter fullscreen event
|
||||||
isEnterFullscreen = (toggle.type === 'enterfullscreen');
|
isEnterFullscreen = (toggle.type === 'enterfullscreen');
|
||||||
@ -2559,7 +2584,7 @@
|
|||||||
// Add common function to retrieve media source
|
// Add common function to retrieve media source
|
||||||
function _source(source) {
|
function _source(source) {
|
||||||
// If not null or undefined, parse it
|
// If not null or undefined, parse it
|
||||||
if (typeof source !== 'undefined') {
|
if (!_is.undefined(source)) {
|
||||||
_updateSource(source);
|
_updateSource(source);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -2572,7 +2597,7 @@
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 'vimeo':
|
case 'vimeo':
|
||||||
plyr.embed.api('getVideoUrl', function (value) {
|
plyr.embed.getVideoUrl.then(function (value) {
|
||||||
url = value;
|
url = value;
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
@ -2594,7 +2619,7 @@
|
|||||||
// Update source
|
// Update source
|
||||||
// Sources are not checked for support so be careful
|
// Sources are not checked for support so be careful
|
||||||
function _updateSource(source) {
|
function _updateSource(source) {
|
||||||
if (typeof source === 'undefined' || !('sources' in source) || !source.sources.length) {
|
if (!_is.object(source) || !('sources' in source) || !source.sources.length) {
|
||||||
_warn('Invalid source format');
|
_warn('Invalid source format');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -2671,7 +2696,7 @@
|
|||||||
_prependChild(plyr.container, plyr.media);
|
_prependChild(plyr.container, plyr.media);
|
||||||
|
|
||||||
// Autoplay the new source?
|
// Autoplay the new source?
|
||||||
if (typeof source.autoplay !== 'undefined') {
|
if (_is.boolean(source.autoplay)) {
|
||||||
config.autoplay = source.autoplay;
|
config.autoplay = source.autoplay;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2800,7 +2825,7 @@
|
|||||||
for (var button in plyr.buttons) {
|
for (var button in plyr.buttons) {
|
||||||
var element = plyr.buttons[button];
|
var element = plyr.buttons[button];
|
||||||
|
|
||||||
if (element instanceof NodeList) {
|
if (_is.nodeList(element)) {
|
||||||
for (var i = 0; i < element.length; i++) {
|
for (var i = 0; i < element.length; i++) {
|
||||||
_toggleClass(element[i], config.classes.tabFocus, (element[i] === focused));
|
_toggleClass(element[i], config.classes.tabFocus, (element[i] === focused));
|
||||||
}
|
}
|
||||||
@ -2979,8 +3004,8 @@
|
|||||||
|
|
||||||
// On click play, pause ore restart
|
// On click play, pause ore restart
|
||||||
_on(wrapper, 'click', function() {
|
_on(wrapper, 'click', function() {
|
||||||
// Touch devices will just show controls
|
// Touch devices will just show controls (if we're hiding controls)
|
||||||
if (plyr.browser.isTouch && !plyr.media.paused) {
|
if (config.hideControls && plyr.browser.isTouch && !plyr.media.paused) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3023,9 +3048,8 @@
|
|||||||
|
|
||||||
// Set blank video src attribute
|
// Set blank video src attribute
|
||||||
// This is to prevent a MEDIA_ERR_SRC_NOT_SUPPORTED error
|
// This is to prevent a MEDIA_ERR_SRC_NOT_SUPPORTED error
|
||||||
// Small mp4: https://github.com/mathiasbynens/small/blob/master/mp4.mp4
|
|
||||||
// Info: http://stackoverflow.com/questions/32231579/how-to-properly-dispose-of-an-html5-video-and-close-socket-or-connection
|
// Info: http://stackoverflow.com/questions/32231579/how-to-properly-dispose-of-an-html5-video-and-close-socket-or-connection
|
||||||
plyr.media.setAttribute('src', 'data:video/mp4;base64,AAAAHGZ0eXBpc29tAAACAGlzb21pc28ybXA0MQAAAAhmcmVlAAAAGm1kYXQAAAGzABAHAAABthBgUYI9t+8AAAMNbW9vdgAAAGxtdmhkAAAAAMXMvvrFzL76AAAD6AAAACoAAQAAAQAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAABhpb2RzAAAAABCAgIAHAE/////+/wAAAiF0cmFrAAAAXHRraGQAAAAPxcy++sXMvvoAAAABAAAAAAAAACoAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAgAAAAIAAAAAAG9bWRpYQAAACBtZGhkAAAAAMXMvvrFzL76AAAAGAAAAAEVxwAAAAAALWhkbHIAAAAAAAAAAHZpZGUAAAAAAAAAAAAAAABWaWRlb0hhbmRsZXIAAAABaG1pbmYAAAAUdm1oZAAAAAEAAAAAAAAAAAAAACRkaW5mAAAAHGRyZWYAAAAAAAAAAQAAAAx1cmwgAAAAAQAAAShzdGJsAAAAxHN0c2QAAAAAAAAAAQAAALRtcDR2AAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAgACABIAAAASAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGP//AAAAXmVzZHMAAAAAA4CAgE0AAQAEgICAPyARAAAAAAMNQAAAAAAFgICALQAAAbABAAABtYkTAAABAAAAASAAxI2IAMUARAEUQwAAAbJMYXZjNTMuMzUuMAaAgIABAgAAABhzdHRzAAAAAAAAAAEAAAABAAAAAQAAABxzdHNjAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAUc3RzegAAAAAAAAASAAAAAQAAABRzdGNvAAAAAAAAAAEAAAAsAAAAYHVkdGEAAABYbWV0YQAAAAAAAAAhaGRscgAAAAAAAAAAbWRpcmFwcGwAAAAAAAAAAAAAAAAraWxzdAAAACOpdG9vAAAAG2RhdGEAAAABAAAAAExhdmY1My4yMS4x');
|
plyr.media.setAttribute('src', 'https://cdn.selz.com/plyr/blank.mp4');
|
||||||
|
|
||||||
// Load the new empty source
|
// Load the new empty source
|
||||||
// This will cancel existing requests
|
// This will cancel existing requests
|
||||||
@ -3264,7 +3288,8 @@
|
|||||||
isFullscreen: function() { return plyr.isFullscreen || false; },
|
isFullscreen: function() { return plyr.isFullscreen || false; },
|
||||||
support: function(mimeType) { return _supportMime(plyr, mimeType); },
|
support: function(mimeType) { return _supportMime(plyr, mimeType); },
|
||||||
destroy: _destroy,
|
destroy: _destroy,
|
||||||
restore: _init
|
restore: _init,
|
||||||
|
getCurrentTime: function() { return plyr.media.currentTime; }
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3273,7 +3298,7 @@
|
|||||||
var x = new XMLHttpRequest();
|
var x = new XMLHttpRequest();
|
||||||
|
|
||||||
// If the id is set and sprite exists, bail
|
// If the id is set and sprite exists, bail
|
||||||
if (typeof id === 'string' && document.querySelector('#' + id) !== null) {
|
if (_is.string(id) && document.querySelector('#' + id) !== null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3289,7 +3314,7 @@
|
|||||||
x.onload = function() {
|
x.onload = function() {
|
||||||
var c = document.createElement('div');
|
var c = document.createElement('div');
|
||||||
c.setAttribute('hidden', '');
|
c.setAttribute('hidden', '');
|
||||||
if (typeof id === 'string') {
|
if (_is.string(id)) {
|
||||||
c.setAttribute('id', id);
|
c.setAttribute('id', id);
|
||||||
}
|
}
|
||||||
c.innerHTML = x.responseText;
|
c.innerHTML = x.responseText;
|
||||||
@ -3347,17 +3372,17 @@
|
|||||||
|
|
||||||
// Select the elements
|
// Select the elements
|
||||||
// Assume elements is a NodeList by default
|
// Assume elements is a NodeList by default
|
||||||
if (typeof targets === 'string') {
|
if (_is.string(targets)) {
|
||||||
targets = document.querySelectorAll(targets);
|
targets = document.querySelectorAll(targets);
|
||||||
}
|
}
|
||||||
// Single HTMLElement passed
|
// Single HTMLElement passed
|
||||||
else if (targets instanceof HTMLElement) {
|
else if (_is.htmlElement(targets)) {
|
||||||
targets = [targets];
|
targets = [targets];
|
||||||
}
|
}
|
||||||
// No selector passed, possibly options as first argument
|
// No selector passed, possibly options as first argument
|
||||||
else if (!(targets instanceof NodeList) && typeof targets !== 'string') {
|
else if (!_is.nodeList(targets) && !_is.array(targets) && !_is.string(targets)) {
|
||||||
// If options are the first argument
|
// If options are the first argument
|
||||||
if (typeof options === 'undefined' && typeof targets === 'object') {
|
if (_is.undefined(options) && _is.object(targets)) {
|
||||||
options = targets;
|
options = targets;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3365,17 +3390,17 @@
|
|||||||
targets = document.querySelectorAll(selector);
|
targets = document.querySelectorAll(selector);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Convert NodeList to array
|
||||||
|
if (_is.nodeList(targets)) {
|
||||||
|
targets = Array.prototype.slice.call(targets);
|
||||||
|
}
|
||||||
|
|
||||||
// Bail if disabled or no basic support
|
// Bail if disabled or no basic support
|
||||||
// You may want to disable certain UAs etc
|
// You may want to disable certain UAs etc
|
||||||
if (!supported().basic || !targets.length) {
|
if (!supported().basic || !targets.length) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Convert NodeList to array
|
|
||||||
if (targets instanceof NodeList) {
|
|
||||||
targets = Array.prototype.slice.call(targets);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check if the targets have multiple media elements
|
// Check if the targets have multiple media elements
|
||||||
for (var i = 0; i < targets.length; i++) {
|
for (var i = 0; i < targets.length; i++) {
|
||||||
var target = targets[i];
|
var target = targets[i];
|
||||||
@ -3451,7 +3476,7 @@
|
|||||||
// https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent
|
// https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent
|
||||||
(function () {
|
(function () {
|
||||||
if (typeof window.CustomEvent === 'function') {
|
if (typeof window.CustomEvent === 'function') {
|
||||||
return false;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
function CustomEvent(event, params) {
|
function CustomEvent(event, params) {
|
||||||
|
@ -19,8 +19,7 @@
|
|||||||
position: relative;
|
position: relative;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
min-width: 200px;
|
min-width: 200px;
|
||||||
overflow: hidden;
|
font-family: @plyr-font-family;
|
||||||
font-family: Avenir, "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
|
|
||||||
direction: ltr;
|
direction: ltr;
|
||||||
|
|
||||||
& when (@plyr-border-box = true) {
|
& when (@plyr-border-box = true) {
|
||||||
@ -226,6 +225,8 @@
|
|||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
padding: floor(@plyr-control-spacing / 3) @plyr-control-spacing;
|
padding: floor(@plyr-control-spacing / 3) @plyr-control-spacing;
|
||||||
background: @plyr-captions-bg;
|
background: @plyr-captions-bg;
|
||||||
|
box-decoration-break: clone;
|
||||||
|
line-height: 150%;
|
||||||
}
|
}
|
||||||
span:empty {
|
span:empty {
|
||||||
display: none;
|
display: none;
|
||||||
@ -354,7 +355,6 @@
|
|||||||
border-radius: inherit;
|
border-radius: inherit;
|
||||||
background: @plyr-audio-controls-bg;
|
background: @plyr-audio-controls-bg;
|
||||||
border: @plyr-audio-controls-border;
|
border: @plyr-audio-controls-border;
|
||||||
box-shadow: @plyr-audio-controls-box-shadow;
|
|
||||||
color: @plyr-audio-control-color;
|
color: @plyr-audio-control-color;
|
||||||
|
|
||||||
button {
|
button {
|
||||||
@ -379,7 +379,7 @@
|
|||||||
background: @plyr-video-control-bg-hover;
|
background: @plyr-video-control-bg-hover;
|
||||||
border: 4px solid currentColor;
|
border: 4px solid currentColor;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 1px 1px fade(@plyr-video-controls-bg, 15%);
|
box-shadow: 0 1px 1px fade(#000, 15%);
|
||||||
color: @plyr-video-control-color;
|
color: @plyr-video-control-color;
|
||||||
transition: all .3s ease;
|
transition: all .3s ease;
|
||||||
|
|
||||||
@ -664,7 +664,6 @@
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
font-size: @plyr-font-size-small;
|
font-size: @plyr-font-size-small;
|
||||||
line-height: .95;
|
|
||||||
}
|
}
|
||||||
// Media duration hidden on small screens
|
// Media duration hidden on small screens
|
||||||
.plyr__time + .plyr__time {
|
.plyr__time + .plyr__time {
|
||||||
|
@ -11,7 +11,8 @@
|
|||||||
// Colors
|
// Colors
|
||||||
@plyr-color-main: #3498db;
|
@plyr-color-main: #3498db;
|
||||||
|
|
||||||
// Font sizes
|
// Font
|
||||||
|
@plyr-font-family: 'San Francisco', -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', Avenir, 'Avenir Next', 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;
|
||||||
@plyr-font-size-small: 14px;
|
@plyr-font-size-small: 14px;
|
||||||
@plyr-font-size-base: 16px;
|
@plyr-font-size-base: 16px;
|
||||||
|
|
||||||
@ -32,7 +33,6 @@
|
|||||||
@plyr-video-control-bg-hover: @plyr-color-main;
|
@plyr-video-control-bg-hover: @plyr-color-main;
|
||||||
@plyr-audio-controls-bg: #fff;
|
@plyr-audio-controls-bg: #fff;
|
||||||
@plyr-audio-controls-border: 1px solid #dbe3e8;
|
@plyr-audio-controls-border: 1px solid #dbe3e8;
|
||||||
@plyr-audio-controls-box-shadow: 0 1px 1px fade(#000, 5%);
|
|
||||||
@plyr-audio-control-color: #565D64;
|
@plyr-audio-control-color: #565D64;
|
||||||
@plyr-audio-control-color-hover: #fff;
|
@plyr-audio-control-color-hover: #fff;
|
||||||
@plyr-audio-control-bg-hover: @plyr-color-main;
|
@plyr-audio-control-bg-hover: @plyr-color-main;
|
||||||
|
@ -19,8 +19,7 @@
|
|||||||
position: relative;
|
position: relative;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
min-width: 200px;
|
min-width: 200px;
|
||||||
overflow: hidden;
|
font-family: $plyr-font-family;
|
||||||
font-family: Avenir, "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
|
|
||||||
direction: ltr;
|
direction: ltr;
|
||||||
|
|
||||||
@if $plyr-border-box == true {
|
@if $plyr-border-box == true {
|
||||||
@ -226,6 +225,8 @@
|
|||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
padding: floor($plyr-control-spacing / 3) $plyr-control-spacing;
|
padding: floor($plyr-control-spacing / 3) $plyr-control-spacing;
|
||||||
background: $plyr-captions-bg;
|
background: $plyr-captions-bg;
|
||||||
|
box-decoration-break: clone;
|
||||||
|
line-height: 150%;
|
||||||
}
|
}
|
||||||
span:empty {
|
span:empty {
|
||||||
display: none;
|
display: none;
|
||||||
@ -354,7 +355,6 @@
|
|||||||
border-radius: inherit;
|
border-radius: inherit;
|
||||||
background: $plyr-audio-controls-bg;
|
background: $plyr-audio-controls-bg;
|
||||||
border: $plyr-audio-controls-border;
|
border: $plyr-audio-controls-border;
|
||||||
box-shadow: $plyr-audio-controls-box-shadow;
|
|
||||||
color: $plyr-audio-control-color;
|
color: $plyr-audio-control-color;
|
||||||
|
|
||||||
button {
|
button {
|
||||||
@ -379,7 +379,7 @@
|
|||||||
background: $plyr-video-control-bg-hover;
|
background: $plyr-video-control-bg-hover;
|
||||||
border: 4px solid currentColor;
|
border: 4px solid currentColor;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 1px 1px transparentize($plyr-video-controls-bg, .85);
|
box-shadow: 0 1px 1px transparentize(#000, .85);
|
||||||
color: $plyr-video-control-color;
|
color: $plyr-video-control-color;
|
||||||
transition: all .3s ease;
|
transition: all .3s ease;
|
||||||
|
|
||||||
@ -663,7 +663,6 @@
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
font-size: $plyr-font-size-small;
|
font-size: $plyr-font-size-small;
|
||||||
line-height: .95;
|
|
||||||
}
|
}
|
||||||
// Media duration hidden on small screens
|
// Media duration hidden on small screens
|
||||||
.plyr__time + .plyr__time {
|
.plyr__time + .plyr__time {
|
||||||
|
@ -13,6 +13,7 @@ $plyr-sr-only-important: true !default;
|
|||||||
$plyr-color-main: #3498db !default;
|
$plyr-color-main: #3498db !default;
|
||||||
|
|
||||||
// Font sizes
|
// Font sizes
|
||||||
|
$plyr-font-family: 'San Francisco', -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', Avenir, 'Avenir Next', 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;
|
||||||
$plyr-font-size-small: 14px !default;
|
$plyr-font-size-small: 14px !default;
|
||||||
$plyr-font-size-base: 16px !default;
|
$plyr-font-size-base: 16px !default;
|
||||||
|
|
||||||
@ -33,7 +34,6 @@ $plyr-video-control-color-hover: #fff !default;
|
|||||||
$plyr-video-control-bg-hover: $plyr-color-main !default;
|
$plyr-video-control-bg-hover: $plyr-color-main !default;
|
||||||
$plyr-audio-controls-bg: #fff !default;
|
$plyr-audio-controls-bg: #fff !default;
|
||||||
$plyr-audio-controls-border: 1px solid #dbe3e8 !default;
|
$plyr-audio-controls-border: 1px solid #dbe3e8 !default;
|
||||||
$plyr-audio-controls-box-shadow: 0 1px 1px transparentize(#000, .95) !default;
|
|
||||||
$plyr-audio-control-color: #565D64 !default;
|
$plyr-audio-control-color: #565D64 !default;
|
||||||
$plyr-audio-control-color-hover: #fff !default;
|
$plyr-audio-control-color-hover: #fff !default;
|
||||||
$plyr-audio-control-bg-hover: $plyr-color-main;
|
$plyr-audio-control-bg-hover: $plyr-color-main;
|
||||||
|
Reference in New Issue
Block a user