Team:Dundee/Project/Mop
From 2013.igem.org
(Difference between revisions)
Kyleharrison (Talk | contribs) |
Kyleharrison (Talk | contribs) |
||
Line 1: | Line 1: | ||
- | |||
<html> | <html> | ||
Line 6: | Line 5: | ||
<!-- Website Design By: www.happyworm.com --> | <!-- Website Design By: www.happyworm.com --> | ||
- | <title> | + | <title>Demo : jPlayer circle player</title> |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> | ||
- | <link href="http://www.kyleharrison.co.uk/igem/digiposter/skin/ | + | <link rel="stylesheet" href="http://www.kyleharrison.co.uk/igem/digiposter/skin/circle.skin/circle.player.css"> |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> | ||
<script type="text/javascript" src="http://www.kyleharrison.co.uk/igem/digiposter/js/jquery.jplayer.min.js"></script> | <script type="text/javascript" src="http://www.kyleharrison.co.uk/igem/digiposter/js/jquery.jplayer.min.js"></script> | ||
+ | <script type="text/javascript" src="http://www.kyleharrison.co.uk/igem/digiposter/js/jquery.transform2d.js"></script> | ||
+ | <script type="text/javascript" src="http://www.kyleharrison.co.uk/igem/digiposter/js/jquery.grab.js"></script> | ||
+ | <script type="text/javascript" src="http://www.kyleharrison.co.uk/igem/digiposter/js/mod.csstransforms.min.js"></script> | ||
+ | <script type="text/javascript" src="http://www.kyleharrison.co.uk/igem/digiposter/js/circle.player.js"></script> | ||
+ | |||
<script type="text/javascript"> | <script type="text/javascript"> | ||
//<![CDATA[ | //<![CDATA[ | ||
+ | |||
$(document).ready(function(){ | $(document).ready(function(){ | ||
- | + | /* | |
- | + | * Instance CirclePlayer inside jQuery doc ready | |
- | + | * | |
- | + | * CirclePlayer(jPlayerSelector, media, options) | |
- | + | * jPlayerSelector: String - The css selector of the jPlayer div. | |
- | + | * media: Object - The media object used in jPlayer("setMedia",media). | |
+ | * options: Object - The jPlayer options. | ||
+ | * | ||
+ | * Multiple instances must set the cssSelectorAncestor in the jPlayer options. Defaults to "#cp_container_1" in CirclePlayer. | ||
+ | * | ||
+ | * The CirclePlayer uses the default supplied:"m4a, oga" if not given, which is different from the jPlayer default of supplied:"mp3" | ||
+ | * Note that the {wmode:"window"} option is set to ensure playback in Firefox 3.6 with the Flash solution. | ||
+ | * However, the OGA format would be used in this case with the HTML solution. | ||
+ | */ | ||
+ | |||
+ | var myCirclePlayer = new CirclePlayer("#jquery_jplayer_1", | ||
+ | { | ||
+ | m4a: "http://www.kyleharrison.co.uk/igem/audio/igemtayfm.wav", | ||
+ | }, { | ||
+ | cssSelectorAncestor: "#cp_container_1", | ||
swfPath: "js", | swfPath: "js", | ||
- | |||
wmode: "window", | wmode: "window", | ||
- | |||
keyEnabled: true | keyEnabled: true | ||
}); | }); | ||
Line 33: | Line 50: | ||
<body> | <body> | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | + | <!-- The jPlayer div must not be hidden. Keep it at the root of the body element to avoid any such problems. --> | |
- | < | + | <div id="jquery_jplayer_1" class="cp-jplayer"></div> |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | <!-- The container for the interface can go where you want to display it. Show and hide it as you need. --> | |
- | + | ||
- | + | <div id="cp_container_1" class="cp-container"> | |
- | + | <div class="cp-buffer-holder"> <!-- .cp-gt50 only needed when buffer is > than 50% --> | |
- | + | <div class="cp-buffer-1"></div> | |
+ | <div class="cp-buffer-2"></div> | ||
</div> | </div> | ||
- | <div class=" | + | <div class="cp-progress-holder"> <!-- .cp-gt50 only needed when progress is > than 50% --> |
- | + | <div class="cp-progress-1"></div> | |
- | + | <div class="cp-progress-2"></div> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
</div> | </div> | ||
+ | <div class="cp-circle-control"></div> | ||
+ | <ul class="cp-controls"> | ||
+ | <li><a class="cp-play" tabindex="1">play</a></li> | ||
+ | <li><a class="cp-pause" style="display:none;" tabindex="1">pause</a></li> <!-- Needs the inline style here, or jQuery.show() uses display:inline instead of display:block --> | ||
+ | </ul> | ||
</div> | </div> | ||
- | |||
- | |||
- | + | ||
+ | |||
+ | |||
+ | |||
+ | |||
</body> | </body> | ||
</html> | </html> |
Revision as of 19:52, 4 October 2013