-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 736 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 736 Bytes
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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script type="text/javascript" charset="utf-8" src="/dist/clappr.min.js"></script>
<script type="text/javascript" charset="utf-8" src="/dist/youtube_playback.js"></script>
<title>youtube-playback Test Page</title>
<script type="text/javascript" charset="utf-8">
window.onload = function() {
var player = new Clappr.Player({
sources: ['nfWlot6h_JM'],
poster: 'https://i.ytimg.com/vi/nfWlot6h_JM/hqdefault.jpg',
parentId: '#player-wrapper',
youtubeShowRelated: true,
plugins: {
playback: [YoutubePlayback]
}
});
}
</script>
</head>
<body>
<div id="player-wrapper">
</div>
</body>
</html>