修改输入框超出最大值问题和进度条修改速度会跳跃问题

This commit is contained in:
2025-08-21 16:03:25 +08:00
parent 3d0493e0dd
commit 4f57ac3d9e
2 changed files with 23 additions and 20 deletions

View File

@ -80,6 +80,10 @@ export default class Sunshine {
}
set speed(v) {
this.options.speed = v
this._elms.speed &&
this._elms.speed.forEach(item => {
item.value = v
})
this.viewer.clock.multiplier = this.options.speed;
this.timeLine.setSpeed(v)
}