Team:Michigan/Test Css

From 2012.igem.org

(Difference between revisions)
Line 1: Line 1:
 +
<script>
 +
$("#slideshow > div:gt(0)").hide();
 +
 +
setInterval(function() {
 +
  $('#slideshow > div:first')
 +
    .fadeOut(1000)
 +
    .next()
 +
    .fadeIn(1000)
 +
    .end()
 +
    .appendTo('#slideshow');
 +
},  3000);
 +
</script>
 +
 +
<html>
<html>
<style type="text/css">
<style type="text/css">

Revision as of 22:24, 31 July 2012

<script> $("#slideshow > div:gt(0)").hide();

setInterval(function() {

 $('#slideshow > div:first')
   .fadeOut(1000)
   .next()
   .fadeIn(1000)
   .end()
   .appendTo('#slideshow');

}, 3000); </script>


Xayona Website Template

Pretty cool eh? This slide is proof the content can be anything.