-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcustom_artwork.html
50 lines (35 loc) · 1.44 KB
/
custom_artwork.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
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="http://www.webchimera.org/favicon.ico">
<meta charset="UTF-8">
<link href="css/styles.css" rel="stylesheet" type="text/css">
<title>Custom Artwork Demo - WebChimera Player</title>
</head>
<body>
<div id="close_wrapper"><a id="close_button" href="index.html"><img src="images/close_but.png"></a></div>
<div id="page_title"><h1>Custom Artwork Demo</h1></div>
<div id="player_wrapper"></div>
<script src="player/webchimera.js" type="text/javascript"></script>
<script>
// create player
wjs("#player_wrapper").addPlayer({ id: "webchimera", theme: "sleek", autoplay: 1 });
// create playlist
myplaylist = [];
myplaylist.push({
url: "http://archive.org/download/CrayonDragonAnAnimatedShortFilmByTonikoPantoja/Crayon%20Dragon%20-%20An%20animated%20short%20film%20by%20Toniko%20Pantoja.mp4",
art: "http://th00.deviantart.net/fs70/PRE/f/2015/013/a/d/__57__10__by_leonidafremov-d8du3np.jpg"
});
myplaylist.push({
url: "http://archive.org/download/CartoonClassics/Krazy_Kat_-_Keeping_Up_With_Krazy.mp4",
art: "http://fc03.deviantart.net/fs71/i/2015/011/8/0/level_up_by_deadslug-d8djll7.jpg"
});
myplaylist.push({
url: "http://archive.org/download/CartoonClassics/Mel-O-Toons__Peter_and_the_Wolf.mp4",
art: "http://fc00.deviantart.net/fs71/f/2015/013/3/c/3c026edbe356b22c802e7be0db6fbd0b-d8dt0go.jpg"
});
// add the playlist to the player
wjs("#webchimera").addPlaylist(myplaylist);
</script>
</body>
</html>