Created
February 16, 2014 09:51
-
-
Save coybit/9031924 to your computer and use it in GitHub Desktop.
A sample code for using jPlayer inside a web page as video/audio player
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <link type="text/css" href="http://jplayer.org/latest/skin/blue.monday/jplayer.blue.monday.css" rel="stylesheet" /> | |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script> | |
| <script type="text/javascript" src="http://jplayer.org/latest/js/jquery.jplayer.min.js"></script> | |
| <script type="text/javascript"> | |
| $(document).ready(function(){ | |
| $("#jquery_jplayer_1").jPlayer({ | |
| ready: function () { | |
| $(this).jPlayer("setMedia", { | |
| m4a: "http://www.jplayer.org/audio/m4a/Miaow-07-Bubble.m4a", | |
| oga: "http://www.jplayer.org/audio/ogg/Miaow-07-Bubble.ogg" | |
| }); | |
| }, | |
| swfPath: "http://jplayer.org/latest/js", | |
| supplied: "m4a, oga" | |
| }); | |
| }); | |
| </script> | |
| </head> | |
| <body> | |
| <div id="jquery_jplayer_1" class="jp-jplayer"></div> | |
| <div id="jp_container_1" class="jp-audio"> | |
| <div class="jp-type-single"> | |
| <div class="jp-gui jp-interface"> | |
| <ul class="jp-controls"> | |
| <li><a href="javascript:;" class="jp-play" tabindex="1">play</a></li> | |
| <li><a href="javascript:;" class="jp-pause" tabindex="1">pause</a></li> | |
| <li><a href="javascript:;" class="jp-stop" tabindex="1">stop</a></li> | |
| <li><a href="javascript:;" class="jp-mute" tabindex="1" title="mute">mute</a></li> | |
| <li><a href="javascript:;" class="jp-unmute" tabindex="1" title="unmute">unmute</a></li> | |
| <li><a href="javascript:;" class="jp-volume-max" tabindex="1" title="max volume">max volume</a></li> | |
| </ul> | |
| <div class="jp-progress"> | |
| <div class="jp-seek-bar"> | |
| <div class="jp-play-bar"></div> | |
| </div> | |
| </div> | |
| <div class="jp-volume-bar"> | |
| <div class="jp-volume-bar-value"></div> | |
| </div> | |
| <div class="jp-time-holder"> | |
| <div class="jp-current-time"></div> | |
| <div class="jp-duration"></div> | |
| <ul class="jp-toggles"> | |
| <li><a href="javascript:;" class="jp-repeat" tabindex="1" title="repeat">repeat</a></li> | |
| <li><a href="javascript:;" class="jp-repeat-off" tabindex="1" title="repeat off">repeat off</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="jp-title"> | |
| <ul> | |
| <li>Bubble</li> | |
| </ul> | |
| </div> | |
| <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> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how to select song name from ul li tag