-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
23 lines (23 loc) · 831 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<title>WcPlayer Demo</title>
<style>
.container {
width: 1280px;
height: 720px;
margin: auto;
}
</style>
</head>
<body>
<div class="container">
<wc-player>
<video src="http://clips.vorwaerts-gmbh.de/VfE_html5.mp4" controls></video>
</wc-player>
<wc-player autoplay>
<iframe width="560" height="315" src="https://www.youtube.com/embed/wjGp6wFJEDA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</wc-player>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>