-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
32 lines (25 loc) · 1.03 KB
/
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>
<head>
<meta charset="UTF-8">
<title><x-playlist></title>
<!-- Importing Web Component's Polyfill -->
<script src="bower_components/webcomponentsjs/webcomponents.min.js"></script>
<!-- Importing Custom Elements -->
<link rel="import" href="src/x-playlist.html">
</head>
<body>
<h1><x-playlist></h1>
<!-- Using Custom Elements -->
<x-playlist loop>
<video src="http://techslides.com/demos/sample-videos/small.mp4" controls preload="none"></video>
<video src="http://vjs.zencdn.net/v/oceans.mp4" controls preload="none"></video>
<audio src="http://www.tonycuffe.com/mp3/tailtoddle_lo.mp3" controls preload="none"></video>
</x-playlist>
<br>
<!-- Simple buttons that use the x-playlist API -->
<button onclick="document.querySelector('x-playlist').previous()">Previous</button>
<button onclick="document.querySelector('x-playlist').next()">Next</button>
<p><a href="https://github.com/heff/x-playlist">View the source</a></p>
</body>
</html>