-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
98 lines (93 loc) · 4.45 KB
/
demo.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>jquery.audioshow | jQuery Audio Slideshow | By Keith Collins</title>
<link rel="stylesheet" href="css/ui-lightness/jquery-ui-1.8.18.custom.css"/>
<link rel="stylesheet" href="css/jquery.audioshow.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="js/jquery-ui-1.8.18.custom.min.js"></script>
<script src="js/jquery.audioshow.js"></script>
</head>
<body>
<div class="audioshow-container">
<ul class="audioshow-thumbs" id="demo">
<li>
<a href="img/slides/street_music_10.jpg" title="">
<img width="150" height="150" src="img/slides/street_music_10-150x150.jpg" class="attachment-thumbnail" alt="This is a caption. Captions are pulled in from the slide image's alt attribute." />
</a>
</li>
<li>
<a href="img/slides/street_music_11.jpg" title="">
<img width="150" height="150" src="img/slides/street_music_11-150x150.jpg" class="attachment-thumbnail" alt="This is a caption. Captions are pulled in from the slide image's alt attribute." />
</a>
</li>
<li>
<a href="img/slides/street_music_12.jpg" title="">
<img width="150" height="150" src="img/slides/street_music_12-150x150.jpg" class="attachment-thumbnail" alt="This is a caption. Captions are pulled in from the slide image's alt attribute." />
</a>
</li>
<li>
<a href="img/slides/street_music_13.jpg" title="">
<img width="150" height="150" src="img/slides/street_music_13-150x150.jpg" class="attachment-thumbnail" alt="This is a caption. Captions are pulled in from the slide image's alt attribute." />
</a>
</li>
<li>
<a href="img/slides/street_music_14.jpg" title="">
<img width="150" height="150" src="img/slides/street_music_14-150x150.jpg" class="attachment-thumbnail" alt="This is a caption. Captions are pulled in from the slide image's alt attribute." />
</a>
</li>
<li>
<a href="img/slides/street_music_15.jpg" title="">
<img width="150" height="150" src="img/slides/street_music_15-150x150.jpg" class="attachment-thumbnail" alt="This is a caption. Captions are pulled in from the slide image's alt attribute." />
</a>
</li>
<li>
<a href="img/slides/street_music_16.jpg" title="">
<img width="150" height="150" src="img/slides/street_music_16-150x150.jpg" class="attachment-thumbnail" alt="This is a caption. Captions are pulled in from the slide image's alt attribute." />
</a>
</li>
<li>
<a href="img/slides/street_music_17.jpg" title="">
<img width="150" height="150" src="img/slides/street_music_17-150x150.jpg" class="attachment-thumbnail" alt="This is a caption. Captions are pulled in from the slide image's alt attribute." />
</a>
</li>
<li>
<a href="img/slides/street_music_18.jpg" title="">
<img width="150" height="150" src="img/slides/street_music_18-150x150.jpg" class="attachment-thumbnail" alt="This is a caption. Captions are pulled in from the slide image's alt attribute." />
</a>
</li>
<li>
<a href="img/slides/street_music_19.jpg" title="">
<img width="150" height="150" src="img/slides/street_music_19-150x150.jpg" class="attachment-thumbnail" alt="This is a caption. Captions are pulled in from the slide image's alt attribute." />
</a>
</li>
<li>
<a href="img/slides/street_music_20.jpg" title="">
<img width="150" height="150" src="img/slides/street_music_20-150x150.jpg" class="attachment-thumbnail" alt="This is a caption. Captions are pulled in from the slide image's alt attribute." />
</a>
</li>
<li>
<a href="img/slides/street_music_21.jpg" title="">
<img width="150" height="150" src="img/slides/street_music_21-150x150.jpg" class="attachment-thumbnail" alt="This is a caption. Captions are pulled in from the slide image's alt attribute." />
</a>
</li>
</ul>
</div>
<div style="padding-bottom:150px"> </div>
<script type="text/javascript">
// audioshow player setup
$('#demo').audioshow({
'transition' : 'fade',
'speed' : 2000,
'bg_color' : '#000000',
'border_color' : 'black',
'border_width' : 5,
'mp3' : 'audio/streetmusic-harmonica.mp3',
'ogg' : 'audio/streetmusic-harmonica.ogg',
'wav' : 'audio/streetmusic-harmonica.wav',
'fill_space' : true
});
</script>
</body>
</html>