forked from mdn/dom-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 938 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
24
25
26
27
28
29
30
31
32
<!doctype html>
<html lang="en">
<head>
<title>Document Picture-in-Picture API Example</title>
<script src="main.js" async></script>
<link href="main.css" rel="stylesheet">
</head>
<body>
<div id="contents">
<h1>Document Picture-in-Picture API Example</h1>
<div id="container">
<p id="in-pip-message">Video player is currently in the separate Picture-in-Picture window.</p>
<div id="player">
<video src="assets/bigbuckbunny.mp4" id="video" controls width="320"></video>
<div id="credits"><a href="https://peach.blender.org/download/" target="_blank">Video by Blender</a>;
<a href="https://peach.blender.org/about/" target="_blank">licensed CC-BY 3.0</a>
</div>
<div id="controlbar">
<p class="no-picture-in-picture">
Document Picture-in-Picture API not available
<p>
</div>
</div>
</div>
</div>
</body>
</html>