-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathnotification.html
33 lines (31 loc) · 1.31 KB
/
notification.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
<html>
<head>
<script src='scripts/jquery-2.0.js'></script>
<script src="scripts/notification/init.js"></script>
<script src='scripts/player_action.js'></script>
<link rel="stylesheet" type="text/css" href="styles/notification.css">
</head>
<body>
<div id="popup">
<div id="player">
<div id="album_art" class="big_art">
<img id="album_art_img" src="http://play.google.com/music/default_album_med.png" height="100" width="100" />
</div>
<div id="song_indicator" class="paused-indicator"></div>
<div id="song_info">
<div id="song_title">Song Title</div>
<div id="artist">Artist</div>
</div>
<div id="time_and_slider">
<div class="player-middle">
</div>
</div>
<div id="controls">
<div id="rew" class="goog-flat-button goog-inline-block prev_song" title="Previous song" role="button" style="-webkit-user-select: none; " aria-disabled="false" aria-pressed="false"></div>
<div id="playPause" class="goog-flat-button goog-inline-block play_pause" title="Play" role="button" style="-webkit-user-select: none; " aria-disabled="false" aria-pressed="false"></div>
<div id="ff" class="goog-flat-button goog-inline-block next_song" title="Next song" role="button" style="-webkit-user-select: none; " aria-disabled="false" aria-pressed="false"></div>
</div>
</div>
</div>
</body>
</html>