-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (85 loc) · 2.29 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
<!DOCTYPE html>
<html>
<header>
<title>Reproductor de música - tarea 1</title>
<meta name="viewport" content="width=device-width, user-scalable=no">
<link rel="stylesheet" href="css/reset.min.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/fonts.css">
</header>
<body>
<nav>
<div class="left">
<a href="#" id="btn-hide-show-side" class="button">
<span class="icon-menu"></span>
</a>
logo
</div>
<div class="right events">
<p><span id="eventlogcount">0</span></p>
<button id="btn-events" class="btn btn-events">Eventos</button>
</div>
</nav>
<div id="currently-playing">
</div>
<aside id="filters">
<ul>
<li><a href="#" id="filter-songs">Canciones</a></li>
<li><a href="#" id="filter-albums">Álbums</a></li>
<li><a href="#" id="filter-artists">Artistas</a></li>
</ul>
</aside>
<section>
<table id="content" class="list">
</table>
</section>
<footer>
<div id="player">
<a href="#" id="btn-back" class="button">
<span class="icon-backward"></span>
</a>
<a href="#" id="btn-play" class="button">
<span class="icon-play"></span>
</a>
<a href="#" id="btn-pause" class="button" style="display:none;">
<span class="icon-pause"></span>
</a>
<a href="#" id="btn-next" class="button">
<span class="icon-forward"></span>
</a>
<div id="playing">
<div id="progressbar"><div id="circle"></div></div>
</div>
<ul>
<li id="transcurredtime">0:0</li>
<li>
<a href="#" id="btn-volume" class="button">
<span class="icon-volume-high"></span>
</a>
</li>
<li>
<div id="volume" style="display: none;">
<div id="volumebar">bar</div>
</div>
</li>
</ul>
<a href="#" id="btn-l" class="button">
<span class="icon-loop"></span>
</a>
<a href="#" id="btn-r" class="button">
<span class="icon-shuffle"></span>
</a>
</div>
</footer>
<table id="eventlog" class="list">
<tr class="theader">
<th>Acción</th>
<th>Elemento</th>
<th>Hora</th>
</tr>
<!--aca agrego el resto en el log -->
</table>
<script src="http://code.createjs.com/soundjs-0.5.2.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>