-
Notifications
You must be signed in to change notification settings - Fork 0
/
testMP.html
77 lines (59 loc) · 2.67 KB
/
testMP.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
<html>
<head>
<title>Responsive HTML5/CSS3 template</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, maximum-scale = 1, minimum-scale=1" />
<link rel="stylesheet" href="css/player.css" type="text/css" />
<link rel="stylesheet" href="css/jquery-ui-1.8.21.custom.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="js/360-player/360player.css" />
<link rel="stylesheet" type="text/css" href="js/360-player/360player-visualization.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="js/jquery.roundabout-shapes.min.js"></script>
<script src="js/jquery.flexslider.js"></script>
<script src="js/jquery.roundabout.js"></script>
<script src="js/default.js"></script>
<script src="js/request.js"></script>
<script src="js/jquery-ui-1.8.21.custom.min.js"></script>
<script type="text/javascript" src="js/360-player/script/berniecode-animator.js"></script>
<script type="text/javascript" src="js/soundmanager2-jsmin.js"></script>
<script src="http://www.parsecdn.com/js/parse-1.0.6.min.js"></script>
<script src="js/testMP.js"></script>
<script src="js/360-player/script/360player.js"></script>
<script type="text/javascript">
soundManager.setup({
// path to directory containing SM2 SWF
url: 'js/soundmanager/swf/'
});
threeSixtyPlayer.config.scaleFont = (navigator.userAgent.match(/msie/i)?false:true);
threeSixtyPlayer.config.showHMSTime = true;
// enable some spectrum stuffs
threeSixtyPlayer.config.useWaveformData = true;
threeSixtyPlayer.config.useEQData = true;
// enable this in SM2 as well, as needed
if (threeSixtyPlayer.config.useWaveformData) {
soundManager.flash9Options.useWaveformData = true;
}
if (threeSixtyPlayer.config.useEQData) {
soundManager.flash9Options.useEQData = true;
}
if (threeSixtyPlayer.config.usePeakData) {
soundManager.flash9Options.usePeakData = true;
}
if (threeSixtyPlayer.config.useWaveformData || threeSixtyPlayer.flash9Options.useEQData || threeSixtyPlayer.flash9Options.usePeakData) {
// even if HTML5 supports MP3, prefer flash so the visualization features can be used.
soundManager.preferFlash = true;
}
// favicon is expensive CPU-wise, but can be used.
if (window.location.href.match(/hifi/i)) {
threeSixtyPlayer.config.useFavIcon = true;
}
if (window.location.href.match(/html5/i)) {
// for testing IE 9, etc.
soundManager.useHTML5Audio = true;
}
</script>
</head>
<body>
<ul id="roundb"><li><img src="img/bep.jpg" width="400" height="400"/></li><li><img src="img/bep.jpg" width="400" height="400"/></li><li><img src="img/bep.jpg" width="400" height="400"/></li></ul>
</body>
</html>