2019-03-20 03:45:23 +08:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
2019-03-20 05:56:39 +08:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width" />
|
|
|
|
<title>Control Your Player</title>
|
|
|
|
<link rel="stylesheet" href="app.css" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
2019-03-21 17:32:58 +08:00
|
|
|
<section id="player">
|
|
|
|
<span class="art"></span>
|
|
|
|
<span class="title"></span>
|
|
|
|
<span class="artist"></span>
|
|
|
|
<span class="album"></span>
|
|
|
|
<span class="elapsed"></span>/<span class="duration"></span>
|
|
|
|
<button class="play">⏯️▶</button>
|
|
|
|
<button class="pause">⏸️</button>
|
|
|
|
<button class="prev">⏮ ⏮️</button>
|
|
|
|
<button class="next">⏭️</button>
|
|
|
|
<button class="repeat">🔁</button>
|
|
|
|
<button class="random">🔀</button>
|
|
|
|
</section>
|
2019-03-20 05:56:39 +08:00
|
|
|
</header>
|
|
|
|
<main>
|
|
|
|
main<br/>
|
|
|
|
main<br/>
|
|
|
|
main<br/>
|
|
|
|
main<br/>
|
|
|
|
main<br/>
|
|
|
|
main<br/>
|
|
|
|
main<br/>
|
|
|
|
main<br/>
|
|
|
|
main<br/>
|
|
|
|
main<br/>
|
|
|
|
main<br/>
|
|
|
|
</main>
|
|
|
|
<footer>
|
2019-03-21 17:32:58 +08:00
|
|
|
<nav>
|
|
|
|
<ul>
|
|
|
|
<li>Q</li>
|
|
|
|
<li>Playlists</li>
|
|
|
|
<li>Library</li>
|
|
|
|
<li>Misc</li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
2019-03-20 05:56:39 +08:00
|
|
|
</footer>
|
|
|
|
<script type="module" src="js/app.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|