fix: 🐛 (xgplayer) 修复音量展示和时机数值有差异的问题

This commit is contained in:
gemstone 2024-05-17 14:52:27 +08:00
parent 9f8e19bd7b
commit e13d1c589b

View File

@ -181,8 +181,10 @@ class Volume extends Plugin {
const $labelValue = this.find('.xgplayer-value-label')
const vol = Math.max(Math.min(volume, 1), 0)
// Math.ceil有精度问题比如Math.ceil(0.55 * 100) == 56因此这里使用parseInt
$labelValue.innerText = muted ? 0 : parseInt(vol * 100, 10)
// Math.ceil有精度问题比如Math.ceil(0.55 * 100) == 56因此这里使用Math.round
// 0.58 * 100 === 57.99999999999999
// 0.55 * 100 === 55.00000000000001
$labelValue.innerText = muted ? 0 : Math.round(vol * 100)
}
/**