陳沛鴻 20140424 TEST-1

From 2014hs.igem.org

Revision as of 04:03, 30 April 2014 by F91445122 (Talk | contribs)


<script type="text/javascript">

   $(function() {
   $('.fadein img:gt(0)').hide();
   setInterval(function () {
   $('.fadein :first-child').fadeOut()
                            .next('img')
                            .fadeIn()
                            .end()
                            .appendTo('.fadein');
   }, 4000); // 4 seconds
   });
   </script>