forked from udiboy1209/fast_playlist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (95 loc) · 5.21 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
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<!-- <link type="text/css" rel="stylesheet" href="css/materialize.css"/>-->
<link rel="stylesheet" type="text/css" href="css/main.css"/>
<link rel="stylesheet" type="text/css" href="css/dragula.min.css"/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="icon" type="png" href="./favicon.png">
</head>
<body class="cyan lighten-5">
<div class="navbar-fixed">
<nav>
<div class="nav-wrapper red">
<a class="brand-logo" href="./">Youtube Fast Playlist</a>
<form id="search-form">
<div class="input-field dropdown-button" data-beloworigin="true" data-activates="search_res">
<input id="search" type="search" autocomplete="off" placeholder="Search all videos"></input>
<label for="search" class="label-icon"><i class="material-icons">search</i></label>
<ul class="collection dropdown-content" id="search_res">
</ul>
</div>
</form>
</div>
</nav>
</div>
<div class="container">
<div class="row">
<div class="col s8">
<div class="row">
<div class="col s12 center"><div id="player"></div></div>
</div>
</div>
<div class="col s4 card white" id="playlist-column">
<div class="row">
<div class="col s6">
<h5>Playlist</h5>
</div>
<div class="col s6 right-align">
<h5 id="totalDuration">00:00:00</h5>
</div>
<hr>
</div>
<div class="row">
<div id="play_prev" class="col s3 center waves-effect btn-play-control" >
<i class="material-icons small" title="Previous">skip_previous</i>
</div>
<div id="play_next" class="col s3 center waves-effect btn-play-control" >
<i class="material-icons small" title="Next">skip_next</i>
</div>
<div class="col s3 center dropdown-button btn-flat" data-activates="play_mode">
<i id="play_selected" class="material-icons small" title="Dropdown to choose">trending_flat</i>
<ul id="play_mode" class="dropdown-content">
<li id="repeat_none"><i class="material-icons small" title="Play all once">trending_flat</i></li>
<li id="repeat_all"><i class="material-icons small" title="Repeat All Songs">repeat</i></li>
<li id="repeat_one"><i class="material-icons small" title="Repeat One Song">repeat_one</i></li>
<li id="repeat_shuffle"><i class="material-icons small" title="Shuffle">shuffle</i></li>
</ul>
</div>
<div class="col s3 center dropdown-button btn-flat" data-activates="more_options">
<i id="more" class="material-icons small" title="More Options">more_vert</i>
<ul id="more_options" class="dropdown-content">
<li id="share">
<i class="material-icons small" title="Copy Share Link">share</i><br>Share
</li>
<li id="clear_playlist">
<i class="material-icons small" title="Clear Playlist">clear</i><br>Clear All
</li>
</ul>
</div>
</div>
<div class="row">
<hr>
<ul class="collection" id="playlist">
</ul>
</div>
</div>
</div>
</div>
<input value="dummy" id="share_link" type="text" readonly/>
<script data-main="js/main" src="js/lib/require.js"></script>
<!-- <script> -->
<!-- (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ -->
<!-- (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), -->
<!-- m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) -->
<!-- })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); -->
<!-- ga('create', 'UA-76325610-1', 'auto'); -->
<!-- ga('send', 'pageview'); -->
<!-- </script> -->
</body>
</html>