-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
33 lines (29 loc) · 1017 Bytes
/
popup.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
<!doctype html>
<html>
<head>
<title>Extension's Popup</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<script src="js/jquery-2.1.4.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="popup.js"></script>
</head>
<body>
<div>
<img id="eksen" src="img/eksen.png" title="Radio Eksen" style="cursor: pointer;" />
<img id="rock" src="img/rock.png" title="Rock FM" style="cursor: pointer;" />
<img id="cult" src="img/cult.png" title="Cult Records" style="cursor: pointer;" />
</div>
<div id="songName"></div>
<div id="bandName"></div>
<img id="albumCover" />
<!-- <marquee behaviour="scroll" direction="left" scrollamount="5" id='infoText'></marquee> -->
<div>
<img id="playImage" />
<img id="speaker" src="img/speaker.png" />
<img id="mute" src="img/mute.png" style="display:none" />
<div id="volume"></div>
</div>
<div id='songList'>
</div>
</body>
</html>