hookehuyr

fix(ui): 修复移动端拖动进度条时的报错并优化交互

添加 touch-action 样式以解决 Video.js 在移动端拖动进度条时的报错问题,同时优化视频播放器的触摸交互
......@@ -199,6 +199,20 @@ defineExpose({
display: none !important;
}
/* 修复 Video.js 在移动端拖动进度条时的报错 */
:deep(.vjs-progress-control) {
touch-action: none;
}
:deep(.vjs-progress-holder) {
touch-action: none;
}
:deep(.video-js) {
/* 优化移动端交互 */
touch-action: manipulation;
}
/* 倍速播放控件样式优化 */
:deep(.vjs-playback-rate) {
order: 7;
......