-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (91 loc) · 4.32 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<title>Play A List Diggie</title>
<link rel="stylesheet" href="./css/style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900" rel="stylesheet">
<link rel="icon" href="./pic/favicon.png">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
<meta name=" description"
content="Create easy youtube playlist with crossfade and autoplay. No Account Needed. The perfect tool for any dj-less party or for home use. Just search and listen!">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id="background"></div>
<div id="description">
<img src="./pic/info.png" height="50px" width="50px">
<h2> Simply search for music and listen. </h2>
<li> If you select multiple Songs, they are added to the Playlist and played in sequence.</li>
<li> If your playlist is empty, a matching song will be added.</li>
<li> Play around with the Crossfade to ... Crossfade.</li>
<li> Delete the only song of the playlist to trigger the autoplay algorithm</li>
<li> Directly play a song by clicking on it in the lists or delete it with X</li>
</div>
<div id="mainFrame"
style="-moz-user-select: none; -webkit-user-select: none; -ms-user-select:none; user-select:none;-o-user-select:none;">
<div id="upperControlsWrapper">
<div id="donateButton">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="QL7T8W3MXZ76A">
<input type="image" src="./pic/btn_donate_LG.gif" border="0" name="submit"
alt="Jetzt einfach, schnell und sicher online bezahlen – mit PayPal.">
<img alt="" border="0" src="https://www.paypalobjects.com/de_DE/i/scr/pixel.gif" width="1"
height="1">
</form>
</div>
</div>
<div id="searchbar">
<form id="searchForm">
<input type="text" role="search " id="search" placeholder="search for music" autocomplete="off"
onClick="this.select()"></input>
<!--<input type="submit" value="Search"></input>-->
</form>
</div>
<div id="resultWrapper">
<div id="resultPlaceholder"></div>
</div>
<div id="playerWrapper">
<div id="player1"></div>
<div id="player2"></div>
</div>
<div id="controlsWrapper">
<div id="controls">
<div id="crossfadeWrapper">
<div id="crossfadeValue">
<label>crossfade</label>
<input type="text" class="crossfadeValue" maxLength="3" readonly value="10s"></input>
</div>
<input type="range" value="10" min="0" max="15" step="1"
onChange="updateCrossfade(this.value);"></input>
</div>
<div id="buttonWrapper">
<input id="switchFancyButton" type="Button" value="changeBackground"
onClick="fancyBgChangeColors();"></input>
<input id="resetButton" type="button" value="resetApp" onClick="deleteLocalStorage()"></input>
</div>
</div>
</div>
<div id="listWrapper">
<div id="playlistWrapper">
<label class="headerLabel">playlist</label>
<div id="playlist" class="playlist"></div>
</div>
<div id="playedlistWrapper">
<label class="headerLabel">lastSongs</label>
<div id="playedlist" class="playlist"></div>
</div>
</div>
</div>
<div id="info" role="contentinfo">
<a href="./legal.html">Legal & Contact</a>
</div>
<!-- jScripts -->
<script src="./js/jquery.min.js"></script>
<script src="./js/jquery.mousewheel.min.js"></script>
<script src="./js/fancyBackground.js"></script>
<script src="https://apis.google.com/js/api.js"></script>
<script type="module" src="./js/search.js"></script>
</body>
</html>