ucservice 1.7.2 → 1.7.5
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/ucservice.common.js +6 -0
- package/dist/ucservice.common.js.gz +0 -0
- package/dist/ucservice.common.js.map +1 -1
- package/dist/ucservice.css +1 -1
- package/dist/ucservice.umd.js +6 -0
- package/dist/ucservice.umd.js.gz +0 -0
- package/dist/ucservice.umd.js.map +1 -1
- package/dist/ucservice.umd.min.js +1 -1
- package/dist/ucservice.umd.min.js.gz +0 -0
- package/dist/ucservice.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/css/scooper.video.css +18 -18
- package/src/scooper.video.js +5 -0
package/package.json
CHANGED
|
@@ -159,22 +159,22 @@
|
|
|
159
159
|
}
|
|
160
160
|
|
|
161
161
|
.video-main.mode-4 .scale-btn {
|
|
162
|
-
bottom:
|
|
163
|
-
right:
|
|
164
|
-
width:
|
|
165
|
-
height:
|
|
162
|
+
bottom: 7px;
|
|
163
|
+
right: 7.5rem;
|
|
164
|
+
width: 1rem;
|
|
165
|
+
height: 1rem;
|
|
166
166
|
}
|
|
167
167
|
.video-main.mode-9 .scale-btn {
|
|
168
|
-
bottom:
|
|
169
|
-
right:
|
|
170
|
-
width:
|
|
171
|
-
height:
|
|
168
|
+
bottom: 6px;
|
|
169
|
+
right: 7rem;
|
|
170
|
+
width: 0.9rem;
|
|
171
|
+
height: 0.9rem;
|
|
172
172
|
}
|
|
173
173
|
.video-main.mode-16 .scale-btn {
|
|
174
|
-
bottom:
|
|
175
|
-
right:
|
|
176
|
-
width:
|
|
177
|
-
height:
|
|
174
|
+
bottom: 7px;
|
|
175
|
+
right: 6rem;
|
|
176
|
+
width: 0.8rem;
|
|
177
|
+
height: 0.8rem;
|
|
178
178
|
}
|
|
179
179
|
.video-main.mode-9 .stream-loading {
|
|
180
180
|
width: 11.4rem;
|
|
@@ -269,16 +269,16 @@
|
|
|
269
269
|
background-size: 100% 100%;
|
|
270
270
|
background-color: rgba(0,0,0,0);
|
|
271
271
|
}
|
|
272
|
-
.rotate-btn
|
|
273
|
-
filter:
|
|
272
|
+
.rotate-btn.bggray, .scale-btn.bggray{
|
|
273
|
+
filter: contrast(0.5);
|
|
274
274
|
}
|
|
275
275
|
.scale-btn {
|
|
276
276
|
position: absolute;
|
|
277
|
-
bottom:
|
|
278
|
-
right:
|
|
277
|
+
bottom: 5px;
|
|
278
|
+
right: 9.5rem;
|
|
279
279
|
border: 0;
|
|
280
|
-
width: 1.
|
|
281
|
-
height: 1.
|
|
280
|
+
width: 1.25rem;
|
|
281
|
+
height: 1.25rem;
|
|
282
282
|
float: left;
|
|
283
283
|
/* background-image: url("~@/img/yy_gb.png"); */
|
|
284
284
|
background-size: 100% 100%;
|
package/src/scooper.video.js
CHANGED
|
@@ -1569,6 +1569,11 @@
|
|
|
1569
1569
|
}
|
|
1570
1570
|
|
|
1571
1571
|
this.VIDEO_DATA[index].close();
|
|
1572
|
+
let video = $(this.selector + ' li ')[index].find('video')
|
|
1573
|
+
if(video.hasClass('scale-scene')) {
|
|
1574
|
+
video.removeClass('scale-scene');
|
|
1575
|
+
video.parent().find('.scale-btn').addClass('bggray')
|
|
1576
|
+
}
|
|
1572
1577
|
|
|
1573
1578
|
if (!isSave) {
|
|
1574
1579
|
this.VIDEO_DATA[index].closeType = 'close';
|