Team:UC Davis/Project Overview
From 2013.igem.org
(Difference between revisions)
Line 1: | Line 1: | ||
{{Team:UC_Davis/Head}} | {{Team:UC_Davis/Head}} | ||
+ | |||
+ | <html> | ||
+ | <head> | ||
+ | <!-- slide script starts here --> | ||
+ | |||
+ | <script type="text/javascript"> | ||
+ | function slider() { | ||
+ | var $current = $('#slides IMG.current'); | ||
+ | |||
+ | if ( $current.length == 0 ) $current = $('#slides IMG:last'); | ||
+ | var $next = $current.next().length ? $current.next() | ||
+ | : $('#slides IMG:first'); | ||
+ | |||
+ | $current.addClass('previous'); | ||
+ | $next.css({opacity: 0.0}) | ||
+ | .addClass('current') | ||
+ | .animate({opacity: 1.0}, 2500, function() { | ||
+ | $current.removeClass('current previous'); | ||
+ | }); | ||
+ | |||
+ | var $navicurrent = $('.progress li.current'); | ||
+ | if($navicurrent.length ==0) $navicurrent = $('.progress li:last'); | ||
+ | var $navinext = $navicurrent.next().length ? $navicurrent.next() : $('.progress li:first'); | ||
+ | $navicurrent.addClass('previous'); | ||
+ | $navicurrent.removeClass('current previous'); | ||
+ | $navinext.addClass('current').animate({opacity: 1.0}, 2500, function() { | ||
+ | }); | ||
+ | |||
+ | |||
+ | } | ||
+ | $(function() { | ||
+ | setInterval( "slider()", 5000 ); | ||
+ | }); | ||
+ | |||
+ | </script> | ||
+ | |||
+ | </script> | ||
+ | |||
+ | </script> | ||
+ | </head> | ||
+ | <body> | ||
+ | </body> | ||
+ | </html> |
Revision as of 21:10, 27 August 2013