@besovideo/webrtc-player 0.9.91 → 0.9.93
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/dist/main.browser.css +47 -0
- package/dist/main.browser.js +27 -11
- package/dist/main.es.css +47 -0
- package/dist/main.es.js +27 -11
- package/package.json +2 -3
package/dist/main.browser.css
CHANGED
|
@@ -16,10 +16,19 @@
|
|
|
16
16
|
line-height: 1.4;
|
|
17
17
|
white-space: normal;
|
|
18
18
|
outline: 0;
|
|
19
|
+
transition-property:
|
|
20
|
+
visibility,
|
|
21
|
+
opacity,
|
|
22
|
+
-webkit-transform;
|
|
19
23
|
transition-property:
|
|
20
24
|
transform,
|
|
21
25
|
visibility,
|
|
22
26
|
opacity;
|
|
27
|
+
transition-property:
|
|
28
|
+
transform,
|
|
29
|
+
visibility,
|
|
30
|
+
opacity,
|
|
31
|
+
-webkit-transform;
|
|
23
32
|
}
|
|
24
33
|
.tippy-box[data-placement^=top] > .tippy-arrow {
|
|
25
34
|
bottom: 0;
|
|
@@ -30,6 +39,7 @@
|
|
|
30
39
|
border-width: 8px 8px 0;
|
|
31
40
|
border-top-color: currentColor;
|
|
32
41
|
border-top-color: initial;
|
|
42
|
+
-webkit-transform-origin: center top;
|
|
33
43
|
transform-origin: center top;
|
|
34
44
|
}
|
|
35
45
|
.tippy-box[data-placement^=bottom] > .tippy-arrow {
|
|
@@ -41,6 +51,7 @@
|
|
|
41
51
|
border-width: 0 8px 8px;
|
|
42
52
|
border-bottom-color: currentColor;
|
|
43
53
|
border-bottom-color: initial;
|
|
54
|
+
-webkit-transform-origin: center bottom;
|
|
44
55
|
transform-origin: center bottom;
|
|
45
56
|
}
|
|
46
57
|
.tippy-box[data-placement^=left] > .tippy-arrow {
|
|
@@ -51,6 +62,7 @@
|
|
|
51
62
|
border-left-color: currentColor;
|
|
52
63
|
border-left-color: initial;
|
|
53
64
|
right: -7px;
|
|
65
|
+
-webkit-transform-origin: center left;
|
|
54
66
|
transform-origin: center left;
|
|
55
67
|
}
|
|
56
68
|
.tippy-box[data-placement^=right] > .tippy-arrow {
|
|
@@ -61,6 +73,7 @@
|
|
|
61
73
|
border-width: 8px 8px 8px 0;
|
|
62
74
|
border-right-color: currentColor;
|
|
63
75
|
border-right-color: initial;
|
|
76
|
+
-webkit-transform-origin: center right;
|
|
64
77
|
transform-origin: center right;
|
|
65
78
|
}
|
|
66
79
|
.tippy-box[data-inertia][data-state=visible] {
|
|
@@ -88,15 +101,19 @@
|
|
|
88
101
|
opacity: 0;
|
|
89
102
|
}
|
|
90
103
|
.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=top] {
|
|
104
|
+
-webkit-transform: translateY(10px);
|
|
91
105
|
transform: translateY(10px);
|
|
92
106
|
}
|
|
93
107
|
.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=bottom] {
|
|
108
|
+
-webkit-transform: translateY(-10px);
|
|
94
109
|
transform: translateY(-10px);
|
|
95
110
|
}
|
|
96
111
|
.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=left] {
|
|
112
|
+
-webkit-transform: translateX(10px);
|
|
97
113
|
transform: translateX(10px);
|
|
98
114
|
}
|
|
99
115
|
.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=right] {
|
|
116
|
+
-webkit-transform: translateX(-10px);
|
|
100
117
|
transform: translateX(-10px);
|
|
101
118
|
}
|
|
102
119
|
|
|
@@ -104,13 +121,18 @@
|
|
|
104
121
|
.cm_container {
|
|
105
122
|
position: absolute;
|
|
106
123
|
opacity: 0;
|
|
124
|
+
-webkit-transform: scale(0);
|
|
107
125
|
transform: scale(0);
|
|
126
|
+
transition: -webkit-transform 0.1s;
|
|
108
127
|
transition: transform 0.1s;
|
|
128
|
+
transition: transform 0.1s, -webkit-transform 0.1s;
|
|
129
|
+
-webkit-transform-origin: top left;
|
|
109
130
|
transform-origin: top left;
|
|
110
131
|
padding: 0;
|
|
111
132
|
}
|
|
112
133
|
.cm_container.display {
|
|
113
134
|
opacity: 1;
|
|
135
|
+
-webkit-transform: scale(1);
|
|
114
136
|
transform: scale(1);
|
|
115
137
|
}
|
|
116
138
|
.cm_container,
|
|
@@ -155,6 +177,7 @@
|
|
|
155
177
|
position: absolute;
|
|
156
178
|
top: 50%;
|
|
157
179
|
right: 0.5em;
|
|
180
|
+
-webkit-transform: translateY(-50%);
|
|
158
181
|
transform: translateY(-50%);
|
|
159
182
|
}
|
|
160
183
|
.cm_container li > ul {
|
|
@@ -215,6 +238,7 @@
|
|
|
215
238
|
padding: 0px 5px;
|
|
216
239
|
}
|
|
217
240
|
.tippy-box[data-theme~=bvplayer][data-placement^=right] .tippy-arrow::before {
|
|
241
|
+
-webkit-transform: translateY(-2px) scale(0.65);
|
|
218
242
|
transform: translateY(-2px) scale(0.65);
|
|
219
243
|
border-right-color: #2e3e4e;
|
|
220
244
|
}
|
|
@@ -303,6 +327,7 @@
|
|
|
303
327
|
overflow: hidden;
|
|
304
328
|
visibility: hidden;
|
|
305
329
|
opacity: 0;
|
|
330
|
+
-webkit-transform: scale(0);
|
|
306
331
|
transform: scale(0);
|
|
307
332
|
will-change: transform, opacity;
|
|
308
333
|
transition: all 0.3s cubic-bezier(0.6, -0.28, 0.735, 0.045);
|
|
@@ -311,6 +336,7 @@
|
|
|
311
336
|
.bvplayer-modal.bvplayer-common-is-visible {
|
|
312
337
|
visibility: visible;
|
|
313
338
|
opacity: 1;
|
|
339
|
+
-webkit-transform: scale(1);
|
|
314
340
|
transform: scale(1);
|
|
315
341
|
transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
|
|
316
342
|
}
|
|
@@ -318,9 +344,11 @@
|
|
|
318
344
|
top: 50%;
|
|
319
345
|
left: 50%;
|
|
320
346
|
margin: auto;
|
|
347
|
+
-webkit-transform: translate(-50%, -50%) scale(0);
|
|
321
348
|
transform: translate(-50%, -50%) scale(0);
|
|
322
349
|
}
|
|
323
350
|
.bvplayer-modal--center.bvplayer-common-is-visible {
|
|
351
|
+
-webkit-transform: translate(-50%, -50%);
|
|
324
352
|
transform: translate(-50%, -50%);
|
|
325
353
|
}
|
|
326
354
|
.bvplayer-modal_title-bar {
|
|
@@ -510,6 +538,7 @@
|
|
|
510
538
|
pointer-events: none;
|
|
511
539
|
visibility: hidden;
|
|
512
540
|
opacity: 0;
|
|
541
|
+
-webkit-transform: translateY(100%);
|
|
513
542
|
transform: translateY(100%);
|
|
514
543
|
will-change:
|
|
515
544
|
visibility,
|
|
@@ -520,6 +549,7 @@
|
|
|
520
549
|
.bvplayer-controller.bvplayer-common-is-visible {
|
|
521
550
|
visibility: visible;
|
|
522
551
|
opacity: 1;
|
|
552
|
+
-webkit-transform: translateY(0);
|
|
523
553
|
transform: translateY(0);
|
|
524
554
|
}
|
|
525
555
|
.bvplayer-controller_mask {
|
|
@@ -587,6 +617,7 @@
|
|
|
587
617
|
}
|
|
588
618
|
.bvplayer-controller_volume--active .bvplayer-slider_thumb,
|
|
589
619
|
.bvplayer-controller_volume:hover .bvplayer-slider_thumb {
|
|
620
|
+
-webkit-transform: scale(1) !important;
|
|
590
621
|
transform: scale(1) !important;
|
|
591
622
|
}
|
|
592
623
|
.bvplayer-controller_volume--active .bvplayer-slider_suffix,
|
|
@@ -601,6 +632,7 @@
|
|
|
601
632
|
width: 0;
|
|
602
633
|
}
|
|
603
634
|
.bvplayer-controller_volume .bvplayer-slider_thumb {
|
|
635
|
+
-webkit-transform: scale(0);
|
|
604
636
|
transform: scale(0);
|
|
605
637
|
}
|
|
606
638
|
.bvplayer-controller_volume .bvplayer-slider_suffix {
|
|
@@ -620,6 +652,7 @@
|
|
|
620
652
|
}
|
|
621
653
|
.bvplayer-ptz.bvplayer-common-is-visible .bvplayer-ptz_control {
|
|
622
654
|
opacity: 1;
|
|
655
|
+
-webkit-transform: translate(-50%, 0);
|
|
623
656
|
transform: translate(-50%, 0);
|
|
624
657
|
}
|
|
625
658
|
.bvplayer-ptz-control-button {
|
|
@@ -634,10 +667,12 @@
|
|
|
634
667
|
overflow: hidden;
|
|
635
668
|
color: rgba(255, 255, 255, 0.8);
|
|
636
669
|
opacity: 1;
|
|
670
|
+
-webkit-transform: scale(1);
|
|
637
671
|
transform: scale(1);
|
|
638
672
|
transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
|
|
639
673
|
}
|
|
640
674
|
.bvplayer-ptz-control-button--press {
|
|
675
|
+
-webkit-transform: scale(0.9);
|
|
641
676
|
transform: scale(0.9);
|
|
642
677
|
opacity: 0.8;
|
|
643
678
|
}
|
|
@@ -663,6 +698,7 @@
|
|
|
663
698
|
left: 0;
|
|
664
699
|
width: 100%;
|
|
665
700
|
border-bottom: 1px solid rgba(255, 255, 255, 0.45);
|
|
701
|
+
-webkit-transform: scaleX(0.3);
|
|
666
702
|
transform: scaleX(0.3);
|
|
667
703
|
}
|
|
668
704
|
.bvplayer-ptz-speed-slider_header::after,
|
|
@@ -705,6 +741,7 @@
|
|
|
705
741
|
position: absolute;
|
|
706
742
|
top: 0;
|
|
707
743
|
left: 50%;
|
|
744
|
+
-webkit-transform: translateX(-50%);
|
|
708
745
|
transform: translateX(-50%);
|
|
709
746
|
display: flex;
|
|
710
747
|
padding: 4px 5px;
|
|
@@ -728,6 +765,7 @@
|
|
|
728
765
|
position: absolute;
|
|
729
766
|
left: 50%;
|
|
730
767
|
bottom: 40px;
|
|
768
|
+
-webkit-transform: translate(-50%, calc(100% + 40px));
|
|
731
769
|
transform: translate(-50%, calc(100% + 40px));
|
|
732
770
|
will-change: transform opacity;
|
|
733
771
|
transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
|
|
@@ -834,9 +872,12 @@
|
|
|
834
872
|
font-size: 16px;
|
|
835
873
|
padding: 0;
|
|
836
874
|
will-change: transform;
|
|
875
|
+
transition: -webkit-transform 0.3s;
|
|
837
876
|
transition: transform 0.3s;
|
|
877
|
+
transition: transform 0.3s, -webkit-transform 0.3s;
|
|
838
878
|
}
|
|
839
879
|
.bvplayer-ptz_control_close-button:hover {
|
|
880
|
+
-webkit-transform: scale(1.1);
|
|
840
881
|
transform: scale(1.1);
|
|
841
882
|
}
|
|
842
883
|
.bvplayer-player {
|
|
@@ -1054,12 +1095,18 @@
|
|
|
1054
1095
|
border: 1px solid #6e98ec;
|
|
1055
1096
|
border-radius: 5px;
|
|
1056
1097
|
}
|
|
1098
|
+
.bvplayer-markerhandle .input-handle-marker .input::-webkit-input-placeholder {
|
|
1099
|
+
color: #dddddd;
|
|
1100
|
+
}
|
|
1057
1101
|
.bvplayer-markerhandle .input-handle-marker .input::-moz-placeholder {
|
|
1058
1102
|
color: #dddddd;
|
|
1059
1103
|
}
|
|
1060
1104
|
.bvplayer-markerhandle .input-handle-marker .input:-ms-input-placeholder {
|
|
1061
1105
|
color: #dddddd;
|
|
1062
1106
|
}
|
|
1107
|
+
.bvplayer-markerhandle .input-handle-marker .input::-ms-input-placeholder {
|
|
1108
|
+
color: #dddddd;
|
|
1109
|
+
}
|
|
1063
1110
|
.bvplayer-markerhandle .input-handle-marker .input::placeholder {
|
|
1064
1111
|
color: #dddddd;
|
|
1065
1112
|
}
|