mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-26 17:46:26 +03:00
43 lines
880 B
JavaScript
43 lines
880 B
JavaScript
/*! @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
|
|
goog.provide('shaka.ui.BigPlayButton');
|
|
|
|
goog.require('shaka.ui.PlayButton');
|
|
goog.requireType('shaka.ui.Controls');
|
|
|
|
|
|
/**
|
|
* @extends {shaka.ui.PlayButton}
|
|
* @final
|
|
* @export
|
|
*/
|
|
shaka.ui.BigPlayButton = class extends shaka.ui.PlayButton {
|
|
/**
|
|
* @param {!HTMLElement} parent
|
|
* @param {!shaka.ui.Controls} controls
|
|
*/
|
|
constructor(parent, controls) {
|
|
super(parent, controls);
|
|
|
|
this.button.classList.add('shaka-play-button');
|
|
this.button.classList.add('shaka-no-propagation');
|
|
}
|
|
|
|
|
|
/** @override */
|
|
updateIcon() {
|
|
if (this.isEnded()) {
|
|
this.button.setAttribute('icon', 'replay');
|
|
} else if (this.isPaused()) {
|
|
this.button.setAttribute('icon', 'play');
|
|
} else {
|
|
this.button.setAttribute('icon', 'pause');
|
|
}
|
|
}
|
|
};
|