@sdk185/sip-phone-sdk26 0.2.21 → 0.2.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -84,7 +84,7 @@
84
84
  </div>
85
85
  <!-- 视频容器区域 -->
86
86
  <v-expand-transition>
87
- <div class="sip-call-wrapper" v-show="showVideoCt" @click="onSipCallClick">
87
+ <div class="sip-call-wrapper" v-show="showVideoCt" @click="onSipCallClick" style="overflow: hidden !important;">
88
88
  <!-- 远程视频窗口 -->
89
89
  <vue-draggable-resizable
90
90
  v-show="remoteVideo.show"
@@ -99,6 +99,7 @@
99
99
  :active="false"
100
100
  class-name="elevation-6 video-panel"
101
101
  ref="remoteVideoWrapper"
102
+ style="overflow: hidden !important;"
102
103
  @mousedown.native="onLocalVideoDragCallback($event, 'remoteVideo')"
103
104
  >
104
105
  <v-btn v-if="miniMode" class="video-normal-mode" dark text x-small width="24" height="24" min-width="24" @click="onChangeVideoNormalModeBtnClick">
@@ -114,7 +115,7 @@
114
115
  x5-video-orientation="h5"
115
116
  ref="remoteVideo"
116
117
  class="sip-call-video"
117
- style="object-fit: contain;pointer-events: none !important;"
118
+ style="object-fit: contain;pointer-events: none !important;transform: scale(1.1) !important;"
118
119
  controls
119
120
  controlsList="nodownload nofullscreen noremoteplayback"
120
121
  disablepictureinpicture
@@ -138,7 +139,6 @@
138
139
  >
139
140
  <video
140
141
  v-show="localVideo.show"
141
- class="sip-call-video"
142
142
  autoplay="autoplay"
143
143
  muted
144
144
  webkit-playsinline="true"
@@ -147,7 +147,9 @@
147
147
  x5-video-player-type="h5"
148
148
  x5-video-orientation="h5"
149
149
  ref="localVideo"
150
- style="pointer-events: none !important; width: 120px !important; height: 160px !important; object-fit: cover !important;"
150
+ style="pointer-events: none !important;"
151
+ class="sip-call-video"
152
+
151
153
  ></video>
152
154
  </vue-draggable-resizable>
153
155
  </div>