-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
55 lines (43 loc) · 1.22 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
<html>
<head>
<title>RadioVis HTML5 Player</title>
<style>
body{
font-family: verdana;
font-size:13px;
}
.radiovis-main {
border: 1px #C5C5C2 solid;
box-shadow: 1px 1px 10px 0px #C5C5C2;
}
.radiovis-textframe {
border-top: 1px #C5C5C2 solid;
}
.frame {
float: left;
margin: 25px;
}
</style>
<link rel="stylesheet" href="css/radiovis-html5player.css">
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/radiovis-html5player.js"></script>
</head>
<body>
<script>
$(document).ready(function(){
$('#frame1').radiovisplayer('/topic/fm/4e1/4000/10800');
$('#frame2').radiovisplayer('/topic/dab/ce1/ce15/c221/0');
$('#frame3').radiovisplayer('/topic/fm/fr/f201/10440');
$('#frame4').radiovisplayer('/topic/dab/6e0/6005/6354/0');
$('#frame5').radiovisplayer('/topic/dab/ce1/c185/c460/0');
$('#frame6').radiovisplayer('/topic/dab/de0/10d9/d3a6/0');
});
</script>
<div id="frame1" class="frame"></div>
<div id="frame2" class="frame"></div>
<div id="frame3" class="frame"></div>
<div id="frame4" class="frame"></div>
<div id="frame5" class="frame"></div>
<div id="frame6" class="frame"></div>
</body>
</html>