Преглед на файлове

空格焦点在键盘空格

丸子 преди 3 месеца
родител
ревизия
12abd5b316
променени са 1 файла, в които са добавени 5 реда и са изтрити 1 реда
  1. 5 1
      src/components/videopage/VideoPlayer.vue

+ 5 - 1
src/components/videopage/VideoPlayer.vue

@@ -492,6 +492,8 @@ const toggleWebFullscreen = () => {
       video.style.width = '100%'
       video.style.height = '100%'
       video.style.objectFit = 'contain'
+      // 确保视频元素获得焦点,以便键盘事件能够正常工作
+      video.focus();
     }
 
     isWebFullscreen.value = true
@@ -514,6 +516,8 @@ const toggleWebFullscreen = () => {
       video.style.width = '100%'
       video.style.height = '100%'
       video.style.objectFit = 'cover'
+      // 确保视频元素获得焦点,以便键盘事件能够正常工作
+      video.focus();
     }
 
     isWebFullscreen.value = false
@@ -665,7 +669,7 @@ onBeforeUnmount(() => {
 /* 章节要点标记样式 */
 .progress-markers {
   position: absolute;
-  bottom: 26px;
+  bottom: 17px;
   left: 15px;
   right: 15px;
   height: 10px;