@flexem/fc-gui 3.0.0-alpha.74 → 3.0.0-alpha.76

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.
package/CHANGELOG.md CHANGED
@@ -324,4 +324,14 @@
324
324
  ## 3.0.0-alpha.74(2023-03-17)
325
325
  ### Web端
326
326
  #### Bug Fix
327
- 1. FLEXCLOUD-2535 【app】分页器与表格分离
327
+ 1. FLEXCLOUD-2535 【app】分页器与表格分离
328
+
329
+ ## 3.0.0-alpha.75(2023-03-27)
330
+ ### Web端
331
+ #### Bug Fix
332
+ 1. FLEXCLOUD-2547 【氚云 20230325001177】运营仪表盘中添加设备的组态,如果设备组态有视频监控的话,放大缩小组态界面后。组态里面的视频画面显示有问题
333
+
334
+ ## 3.0.0-alpha.76(2023-03-27)
335
+ ### Web端
336
+ #### Bug Fix
337
+ 1. 把视频组件中的视频,改成拉伸显示
@@ -39500,11 +39500,13 @@ class video_element_VideoElement extends conditional_display_element_Conditional
39500
39500
  .attr('height', this.model.size.height)
39501
39501
  .append('xhtml:video')
39502
39502
  .attr('id', this.videoId)
39503
+ .attr('class', 'element-video')
39503
39504
  .attr('scareX', this.model.location.x / this.guiSize.width)
39504
39505
  .attr('scareY', this.model.location.y / this.guiSize.height)
39505
39506
  .attr('src', videoUrl)
39506
39507
  .style('width', '100%')
39507
39508
  .style('height', '100%')
39509
+ .style('object-fit', 'fill')
39508
39510
  .attr('playsInline', true)
39509
39511
  .attr('webkit-playsinline', true);
39510
39512
  if (this.isMobileMode) {