-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathapp.component.html
46 lines (43 loc) · 1007 Bytes
/
app.component.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<div id="container">
<vm-player #player playsinline (vPlaybackReady)="onPlaybackReady()">
<vm-video
cross-origin="true"
poster="https://files.vidstack.io/agent-327/poster.png"
>
<source
data-src="https://files.vidstack.io/agent-327/720p.mp4"
type="video/mp4"
/>
<track
default
kind="subtitles"
src="https://files.vidstack.io/agent-327/subs/english.vtt"
srclang="en"
label="English"
/>
<track
kind="subtitles"
src="https://files.vidstack.io/agent-327/subs/spanish.vtt"
srclang="es"
label="Spanish"
/>
</vm-video>
<vm-default-ui>
<!-- Custom UI component. -->
<tap-sides-to-seek></tap-sides-to-seek>
</vm-default-ui>
</vm-player>
</div>
<style>
:host {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
#container {
width: 100%;
max-width: 960px;
}
</style>