mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 03:05:02 +08:00
fix(xgplayer): fix percent NaN and fix to currentTime percent
This commit is contained in:
parent
1cfc08b6ea
commit
6c4acca4d2
@ -620,6 +620,9 @@ class Progress extends Plugin {
|
||||
offset = offset > rWidth ? rWidth : (offset < 0 ? 0 : offset)
|
||||
let percent = offset / rWidth
|
||||
percent = percent < 0 ? 0 : (percent > 1 ? 1 : percent)
|
||||
if(Number.isNaN(percent)){
|
||||
percent = this.player.currentTime / this.offsetDuration
|
||||
}
|
||||
const currentTime = parseInt(percent * this.offsetDuration * 1000, 10) / 1000
|
||||
const seekTime = Util.getCurrentTimeByOffset(currentTime, player.timeSegments)
|
||||
return {
|
||||
|
Loading…
x
Reference in New Issue
Block a user