1<!DOCTYPE html>
2<html>
3<head>
4<meta charset="utf-8" />
5<!-- Website Design By: www.happyworm.com -->
6<title>Demo : Multi instanced jPlayer audio players</title>
7<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
8<link href="../../dist/skin/pink.flag/css/jplayer.pink.flag.min.css" rel="stylesheet" type="text/css" />
9<script type="text/javascript" src="../../lib/jquery.min.js"></script>
10<script type="text/javascript" src="../../dist/jplayer/jquery.jplayer.min.js"></script>
11<script type="text/javascript">
12//<![CDATA[
13$(document).ready(function(){
14
15	$("#jquery_jplayer_1").jPlayer({
16		ready: function () {
17			$(this).jPlayer("setMedia", {
18				title: "Stirring of a fool",
19				m4a: "http://www.jplayer.org/audio/m4a/Miaow-08-Stirring-of-a-fool.m4a",
20				oga: "http://www.jplayer.org/audio/ogg/Miaow-08-Stirring-of-a-fool.ogg"
21			});
22		},
23		swfPath: "../../dist/jplayer",
24		supplied: "m4a, oga",
25		wmode: "window",
26		globalVolume: true,
27		useStateClassSkin: true,
28		autoBlur: false,
29		smoothPlayBar: true,
30		keyEnabled: true
31	});
32
33	$("#jquery_jplayer_2").jPlayer({
34		ready: function () {
35			$(this).jPlayer("setMedia", {
36				title: "Hidden",
37				m4a: "http://www.jplayer.org/audio/m4a/Miaow-02-Hidden.m4a",
38				oga: "http://www.jplayer.org/audio/ogg/Miaow-02-Hidden.ogg"
39			});
40		},
41		swfPath: "../../dist/jplayer",
42		supplied: "m4a, oga",
43		cssSelectorAncestor: "#jp_container_2",
44		wmode: "window",
45		globalVolume: true,
46		useStateClassSkin: true,
47		autoBlur: false,
48		smoothPlayBar: true,
49		keyEnabled: true
50	});
51
52	$("#jquery_jplayer_3").jPlayer({
53		ready: function () {
54			$(this).jPlayer("setMedia", {
55				title: "Bubble",
56				m4a: "http://www.jplayer.org/audio/m4a/Miaow-07-Bubble.m4a",
57				oga: "http://www.jplayer.org/audio/ogg/Miaow-07-Bubble.ogg"
58			});
59		},
60		swfPath: "../../dist/jplayer",
61		supplied: "m4a, oga",
62		cssSelectorAncestor: "#jp_container_3",
63		wmode: "window",
64		globalVolume: true,
65		useStateClassSkin: true,
66		autoBlur: false,
67		smoothPlayBar: true,
68		keyEnabled: true
69	});
70});
71//]]>
72</script>
73</head>
74<body>
75<div id="jquery_jplayer_1" class="jp-jplayer"></div>
76<div id="jp_container_1" class="jp-audio" role="application" aria-label="media player">
77	<div class="jp-type-single">
78		<div class="jp-gui jp-interface">
79			<div class="jp-volume-controls">
80				<button class="jp-mute" role="button" tabindex="0">mute</button>
81				<button class="jp-volume-max" role="button" tabindex="0">max volume</button>
82				<div class="jp-volume-bar">
83					<div class="jp-volume-bar-value"></div>
84				</div>
85			</div>
86			<div class="jp-controls-holder">
87				<div class="jp-controls">
88					<button class="jp-play" role="button" tabindex="0">play</button>
89					<button class="jp-stop" role="button" tabindex="0">stop</button>
90				</div>
91				<div class="jp-progress">
92					<div class="jp-seek-bar">
93						<div class="jp-play-bar"></div>
94					</div>
95				</div>
96				<div class="jp-current-time" role="timer" aria-label="time">&nbsp;</div>
97				<div class="jp-duration" role="timer" aria-label="duration">&nbsp;</div>
98				<div class="jp-toggles">
99					<button class="jp-repeat" role="button" tabindex="0">repeat</button>
100				</div>
101			</div>
102		</div>
103		<div class="jp-details">
104			<div class="jp-title" aria-label="title">&nbsp;</div>
105		</div>
106		<div class="jp-no-solution">
107			<span>Update Required</span>
108			To play the media you will need to either update your browser to a recent version or update your <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a>.
109		</div>
110	</div>
111</div>
112<div id="jquery_jplayer_2" class="jp-jplayer"></div>
113<div id="jp_container_2" class="jp-audio" role="application" aria-label="media player">
114	<div class="jp-type-single">
115		<div class="jp-gui jp-interface">
116			<div class="jp-volume-controls">
117				<button class="jp-mute" role="button" tabindex="0">mute</button>
118				<button class="jp-volume-max" role="button" tabindex="0">max volume</button>
119				<div class="jp-volume-bar">
120					<div class="jp-volume-bar-value"></div>
121				</div>
122			</div>
123			<div class="jp-controls-holder">
124				<div class="jp-controls">
125					<button class="jp-play" role="button" tabindex="0">play</button>
126					<button class="jp-stop" role="button" tabindex="0">stop</button>
127				</div>
128				<div class="jp-progress">
129					<div class="jp-seek-bar">
130						<div class="jp-play-bar"></div>
131					</div>
132				</div>
133				<div class="jp-current-time" role="timer" aria-label="time">&nbsp;</div>
134				<div class="jp-duration" role="timer" aria-label="duration">&nbsp;</div>
135				<div class="jp-toggles">
136					<button class="jp-repeat" role="button" tabindex="0">repeat</button>
137				</div>
138			</div>
139		</div>
140		<div class="jp-details">
141			<div class="jp-title" aria-label="title">&nbsp;</div>
142		</div>
143		<div class="jp-no-solution">
144			<span>Update Required</span>
145			To play the media you will need to either update your browser to a recent version or update your <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a>.
146		</div>
147	</div>
148</div>
149<div id="jquery_jplayer_3" class="jp-jplayer"></div>
150<div id="jp_container_3" class="jp-audio" role="application" aria-label="media player">
151	<div class="jp-type-single">
152		<div class="jp-gui jp-interface">
153			<div class="jp-volume-controls">
154				<button class="jp-mute" role="button" tabindex="0">mute</button>
155				<button class="jp-volume-max" role="button" tabindex="0">max volume</button>
156				<div class="jp-volume-bar">
157					<div class="jp-volume-bar-value"></div>
158				</div>
159			</div>
160			<div class="jp-controls-holder">
161				<div class="jp-controls">
162					<button class="jp-play" role="button" tabindex="0">play</button>
163					<button class="jp-stop" role="button" tabindex="0">stop</button>
164				</div>
165				<div class="jp-progress">
166					<div class="jp-seek-bar">
167						<div class="jp-play-bar"></div>
168					</div>
169				</div>
170				<div class="jp-current-time" role="timer" aria-label="time">&nbsp;</div>
171				<div class="jp-duration" role="timer" aria-label="duration">&nbsp;</div>
172				<div class="jp-toggles">
173					<button class="jp-repeat" role="button" tabindex="0">repeat</button>
174				</div>
175			</div>
176		</div>
177		<div class="jp-details">
178			<div class="jp-title" aria-label="title">&nbsp;</div>
179		</div>
180		<div class="jp-no-solution">
181			<span>Update Required</span>
182			To play the media you will need to either update your browser to a recent version or update your <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a>.
183		</div>
184	</div>
185</div>
186</body>
187
188</html>
189
190