@volcengine/veplayer-plugin 2.0.0-rc.0
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/README.md +1 -0
- package/esm/flv.d.ts +3 -0
- package/esm/hls.d.ts +3 -0
- package/esm/index.d.ts +6 -0
- package/esm/index.development.css +63 -0
- package/esm/index.development.js +83150 -0
- package/esm/index.production.css +1 -0
- package/esm/index.production.js +26 -0
- package/esm/mp4.d.ts +3 -0
- package/esm/rtm.d.ts +3 -0
- package/esm/shaka.d.ts +3 -0
- package/esm/veplayer.plugin.flv.development.js +17622 -0
- package/esm/veplayer.plugin.flv.production.js +2 -0
- package/esm/veplayer.plugin.hls.development.js +21398 -0
- package/esm/veplayer.plugin.hls.production.js +2 -0
- package/esm/veplayer.plugin.mp4.development.js +33148 -0
- package/esm/veplayer.plugin.mp4.production.js +2 -0
- package/esm/veplayer.plugin.rtm.development.js +5469 -0
- package/esm/veplayer.plugin.rtm.production.js +2 -0
- package/esm/veplayer.plugin.shaka.development.js +15890 -0
- package/esm/veplayer.plugin.shaka.production.js +20 -0
- package/esm/veplayer.plugin.time.shift.development.css +63 -0
- package/esm/veplayer.plugin.time.shift.development.js +339 -0
- package/esm/veplayer.plugin.time.shift.production.css +1 -0
- package/esm/veplayer.plugin.time.shift.production.js +2 -0
- package/esm/veplayer.plugin.xgvideo.development.js +19094 -0
- package/esm/veplayer.plugin.xgvideo.production.js +2 -0
- package/esm/xgvideo.d.ts +3 -0
- package/package.json +155 -0
- package/umd/flv.d.ts +3 -0
- package/umd/hls.d.ts +3 -0
- package/umd/index.d.ts +6 -0
- package/umd/index.development.js +82776 -0
- package/umd/index.production.js +1 -0
- package/umd/mp4.d.ts +3 -0
- package/umd/rtm.d.ts +3 -0
- package/umd/shaka.d.ts +3 -0
- package/umd/veplayer.plugin.flv.development.js +17625 -0
- package/umd/veplayer.plugin.flv.production.js +1 -0
- package/umd/veplayer.plugin.hls.development.js +21402 -0
- package/umd/veplayer.plugin.hls.production.js +1 -0
- package/umd/veplayer.plugin.mp4.development.js +33152 -0
- package/umd/veplayer.plugin.mp4.production.js +1 -0
- package/umd/veplayer.plugin.rtm.development.js +5473 -0
- package/umd/veplayer.plugin.rtm.production.js +1 -0
- package/umd/veplayer.plugin.shaka.development.js +15894 -0
- package/umd/veplayer.plugin.shaka.production.js +1 -0
- package/umd/veplayer.plugin.time.shift.development.css +63 -0
- package/umd/veplayer.plugin.time.shift.development.js +342 -0
- package/umd/veplayer.plugin.time.shift.production.css +1 -0
- package/umd/veplayer.plugin.time.shift.production.js +1 -0
- package/umd/veplayer.plugin.xgvideo.development.js +19098 -0
- package/umd/veplayer.plugin.xgvideo.production.js +1 -0
- package/umd/xgvideo.d.ts +3 -0
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# @byted/veplayer-plugin
|
package/esm/flv.d.ts
ADDED
package/esm/hls.d.ts
ADDED
package/esm/index.d.ts
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
.xgplayer-shift .xgplayer-shift-progress-point {
|
|
2
|
+
position: absolute;
|
|
3
|
+
top: -30px;
|
|
4
|
+
display: none;
|
|
5
|
+
width: 60px;
|
|
6
|
+
padding: 6px 0;
|
|
7
|
+
color: #fff;
|
|
8
|
+
font-size: 12px;
|
|
9
|
+
line-height: 18px;
|
|
10
|
+
text-align: center;
|
|
11
|
+
background: rgba(0, 0, 0, 0.6);
|
|
12
|
+
border-radius: 2px;
|
|
13
|
+
transform: translateX(-50%);
|
|
14
|
+
}
|
|
15
|
+
.xgplayer-shift.active .xgplayer-shift-progress-point {
|
|
16
|
+
display: block;
|
|
17
|
+
}
|
|
18
|
+
.xgplayer-shift.xgplayer-progress .xgplayer-progress-outer {
|
|
19
|
+
transition: unset;
|
|
20
|
+
}
|
|
21
|
+
.xgplayer-shift.xgplayer-progress .xgplayer-progress-btn {
|
|
22
|
+
width: 16px;
|
|
23
|
+
height: 16px;
|
|
24
|
+
background: #346aff41;
|
|
25
|
+
box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.096);
|
|
26
|
+
}
|
|
27
|
+
.xgplayer-shift.xgplayer-progress .xgplayer-progress-played {
|
|
28
|
+
background: #3469ff;
|
|
29
|
+
}
|
|
30
|
+
.xgplayer-back-live-bt {
|
|
31
|
+
position: absolute;
|
|
32
|
+
bottom: 60px;
|
|
33
|
+
left: 20px;
|
|
34
|
+
display: none;
|
|
35
|
+
align-items: center;
|
|
36
|
+
justify-content: center;
|
|
37
|
+
width: 96px;
|
|
38
|
+
height: 32px;
|
|
39
|
+
color: #fff;
|
|
40
|
+
font-size: 13px;
|
|
41
|
+
background: rgba(0, 0, 0, 0.4);
|
|
42
|
+
border: 1px solid rgba(255, 255, 255, 0.8);
|
|
43
|
+
border-radius: 16px;
|
|
44
|
+
cursor: pointer;
|
|
45
|
+
}
|
|
46
|
+
.xgplayer-back-live-bt:hover {
|
|
47
|
+
background: rgba(0, 0, 0, 0.6);
|
|
48
|
+
}
|
|
49
|
+
.xgplayer-inactive .xgplayer-back-live-bt {
|
|
50
|
+
display: none;
|
|
51
|
+
}
|
|
52
|
+
.xgplayer-mobile .xgplayer-shift {
|
|
53
|
+
margin: 0 8px;
|
|
54
|
+
}
|
|
55
|
+
.xgplayer-mobile .xgplayer-shift .xgplayer-shift-progress-point {
|
|
56
|
+
display: none;
|
|
57
|
+
}
|
|
58
|
+
.xgplayer-mobile .xgplayer-back-live-bt {
|
|
59
|
+
bottom: 40px;
|
|
60
|
+
width: 86px;
|
|
61
|
+
height: 25px;
|
|
62
|
+
font-size: 12px;
|
|
63
|
+
}
|