Skip to content

Commit

Permalink
use timeupdate event
Browse files Browse the repository at this point in the history
  • Loading branch information
DIYgod committed Jun 13, 2018
1 parent 5310ad8 commit 0159d92
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 18 deletions.
11 changes: 8 additions & 3 deletions src/js/player.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@ class DPlayer {
}).then(() => {
});
this.timer.enable('loading');
this.timer.enable('progress');
this.container.classList.remove('dplayer-paused');
this.container.classList.add('dplayer-playing');
if (this.danmaku) {
Expand Down Expand Up @@ -211,9 +210,7 @@ class DPlayer {

this.template.playButton.innerHTML = Icons.play;
this.video.pause();
this.player.container.classList.remove('dplayer-loading'); // TODO
this.timer.disable('loading');
this.timer.disable('progress');
this.container.classList.remove('dplayer-playing');
this.container.classList.add('dplayer-paused');
if (this.danmaku) {
Expand Down Expand Up @@ -463,6 +460,14 @@ class DPlayer {
}
});

this.on('timeupdate', () => {
this.bar.set('played', this.video.currentTime / this.video.duration, 'width');
const currentTime = utils.secondToTime(this.video.currentTime);
if (this.template.ptime.innerHTML !== currentTime) {
this.template.ptime.innerHTML = currentTime;
}
});

for (let i = 0; i < this.events.videoEvents.length; i++) {
video.addEventListener(this.events.videoEvents[i], () => {
this.events.trigger(this.events.videoEvents[i]);
Expand Down
16 changes: 1 addition & 15 deletions src/js/timer.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import utils from './utils';

class Timer {
constructor (player) {
this.player = player;
Expand All @@ -15,7 +13,7 @@ class Timer {
}
)();

this.types = ['loading', 'progress', 'info', 'fps'];
this.types = ['loading', 'info', 'fps'];

this.init();
}
Expand Down Expand Up @@ -54,18 +52,6 @@ class Timer {
}, 100);
}

initprogressChecker () {
this.progressChecker = setInterval(() => {
if (this.enableprogressChecker) {
this.player.bar.set('played', this.player.video.currentTime / this.player.video.duration, 'width');
const currentTime = utils.secondToTime(this.player.video.currentTime);
if (this.player.template.ptime.innerHTML !== currentTime) {
this.player.template.ptime.innerHTML = currentTime;
}
}
}, 100);
}

initfpsChecker () {
window.requestAnimationFrame(() => {
if (this.enablefpsChecker) {
Expand Down

0 comments on commit 0159d92

Please sign in to comment.