소스 검색

优化jessibuca播放器

648540858 1 년 전
부모
커밋
1af6324a09
2개의 변경된 파일5개의 추가작업 그리고 4개의 파일을 삭제
  1. 5 4
      web_src/src/components/common/jessibuca.vue
  2. 0 0
      web_src/static/js/jessibuca/decoder.wasm

+ 5 - 4
web_src/src/components/common/jessibuca.vue

@@ -1,6 +1,6 @@
 <template>
   <div ref="container" @dblclick="fullscreenSwich"
-       style="width:100%;height:100%;background-color: #000000;margin:0 auto;position: relative;">
+       style="width:100%;height:100%;min-height: 200px;background-color: #000000;margin:0 auto;position: relative;">
     <div class="buttons-box" id="buttonsBox">
       <div class="buttons-box-left">
         <i v-if="!playing" class="iconfont icon-play jessibuca-btn" @click="playBtnClick"></i>
@@ -80,9 +80,10 @@ export default {
         height = clientHeight
         width = (16 / 9) * height
       }
-
-      dom.style.width = width + 'px';
-      dom.style.height = height + "px";
+      if (width > 0 && height > 0) {
+        dom.style.width = width + 'px';
+        dom.style.height = height + "px";
+      }
     },
     create() {
       let options = {

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
web_src/static/js/jessibuca/decoder.wasm


이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.