-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·90 lines (82 loc) · 3.8 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
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
<!DOCTYPE html>
<html>
<head>
<title>HTML/CSS3 Karaoke Player</title>
<meta charset="UTF-8">
<meta name="author" content="Purevtsooj Davaatseren">
<meta name="description" content="jPlayer Karaoke" />
<meta name="keywords" content="html, css, js, jquery, karaoke, jplayer, html karaoke, js karaoke" />
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jplayer/jquery.jplayer.min.js"></script>
<script type="text/javascript" src="jplayer/jplayer.playlist.min.js"></script>
<script type="text/javascript" src="scripts.js"></script>
</head>
<body>
<div id="jp_container_1" class="jp-video jp-video-360p" role="application" aria-label="media player">
<div class="jp-type-single">
<div id="jplayer_player_1" class="jp-jplayer"></div>
<!--main containers for our controls-->
<div class="jp-gui">
<div class="jp-interface">
<div class="jp-controls-holder">
<!--play and pause buttons-->
<a href="javascript:;" class="jp-play" tabindex="1">play</a>
<a href="javascript:;" class="jp-pause" tabindex="1">pause</a>
<span class="separator sep-1"></span>
<!--progress bar-->
<div class="jp-progress">
<div class="jp-seek-bar">
<div class="jp-play-bar"><span></span></div>
</div>
</div>
<!--time notifications-->
<div class="jp-current-time"></div>
<span class="time-sep">/</span>
<div class="jp-duration"></div>
<span class="separator sep-2"></span>
<!--mute / unmute toggle-->
<a href="javascript:;" class="jp-mute" tabindex="1" title="mute">mute</a>
<a href="javascript:;" class="jp-unmute" tabindex="1" title="unmute">unmute</a>
<!--volume bar-->
<div class="jp-volume-bar">
<div class="jp-volume-bar-value"><span class="handle"></span></div>
</div>
<span class="separator sep-2"></span>
<!--full screen toggle-->
<a href="javascript:;" class="jp-full-screen" tabindex="1" title="full screen">full screen</a>
<a href="javascript:;" class="jp-restore-screen" tabindex="1" title="restore screen">restore screen</a>
</div><!--end jp-controls-holder-->
</div><!--end jp-interface-->
</div><!--end jp-gui-->
<div class="jp-no-solution">
<span>Update Required</span>
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>.
</div>
</div>
<!--customization-->
<div class="playlist-container">
<ol class="playlist">
<li class="active playlist-item" onclick="run('title1', 'http://www.jplayer.org/audio/mp3/TSP-01-Cro_magnon_man.mp3', 'jplayer/viewport.jpg', 'media/gatsuurhan.xml')">
<figure>
<img width=50 height=50 src="jplayer/viewport.jpg"/>
</figure>
<span>title1</span>
</li>
<li class="playlist-item" onclick="run('title2', 'http://www.jplayer.org/audio/mp3/TSP-05-Your_face.mp3', 'jplayer/2.jpg', 'media/gatsuurhan2.xml')">
<figure>
<img width=50 height=50 src="jplayer/2.jpg"/>
</figure>
<span>title2</span>
</li>
<li class="playlist-item" onclick="run('title3', 'http://www.jplayer.org/audio/mp3/TSP-07-Cybersonnet.mp3', 'jplayer/3.jpg', 'media/gatsuurhan3.xml')">
<figure>
<img width=50 height=50 src="jplayer/3.jpg"/>
</figure>
<span>title3</span>
</li>
</ol>
</div>
</div>
</body>
</html>