Team:BostonU/Social
From 2013.igem.org
(Difference between revisions)
m |
|||
Line 174: | Line 174: | ||
<p> | <p> | ||
<p> | <p> | ||
- | <h7>On June 4th and 5th,the iGEM Team from <a href="https://2013.igem.org/Team:Wellesley_Desyne">Wellesley Desyne</a> visited for two days of <a href="https://2013.igem.org/Team:BostonU/Collaborations">collaboration</a> and learning. We spent the time on Monday sharing knowledge of basic biology and practicing with the <a href="https://2013.igem.org/Team:BostonU/Clotho">Clotho app Eugene</a>. On the second day, we learned about one another's projects while providing constructive feedback. To end the two day event, we went to Jillian's for a friendly round of bowling. | + | <h7>On June 4th and 5th, the iGEM Team from <a href="https://2013.igem.org/Team:Wellesley_Desyne">Wellesley Desyne</a> visited for two days of <a href="https://2013.igem.org/Team:BostonU/Collaborations">collaboration</a> and learning. We spent the time on Monday sharing knowledge of basic biology and practicing with the <a href="https://2013.igem.org/Team:BostonU/Clotho">Clotho app Eugene</a>. On the second day, we learned about one another's projects while providing constructive feedback. To end the two day event, we went to Jillian's for a friendly round of bowling.</h7> |
+ | |||
+ | <!-- configurable script --> | ||
+ | <script type="text/javascript"> | ||
+ | theimage = new Array(); | ||
+ | |||
+ | |||
+ | // The dimensions of ALL the images should be the same or some of them may look stretched or reduced in Netscape 4. | ||
+ | // Format: theimage[...]=[image URL, link URL, name/description] | ||
+ | theimage[0]=["https://static.igem.org/mediawiki/2013/b/ba/Jillians.jpg", "", ""]; | ||
+ | theimage[1]=["https://static.igem.org/mediawiki/2013/thumb/6/64/23.jpg/800px-23.jpg", "", ""]; | ||
+ | theimage[2]=["https://static.igem.org/mediawiki/2013/a/ad/24.jpg", "", ""]; | ||
+ | theimage[3]=["https://static.igem.org/mediawiki/2013/f/f3/1.jpg", "", ""]; | ||
+ | theimage[4]=["https://static.igem.org/mediawiki/2013/1/15/2.jpg", "", ""]; | ||
+ | theimage[5]=["https://static.igem.org/mediawiki/2013/d/d0/4.jpg", "", ""]; | ||
+ | theimage[6]=["https://static.igem.org/mediawiki/2013/1/18/6.jpg", "", ""]; | ||
+ | theimage[7]=["https://static.igem.org/mediawiki/2013/f/fe/7.jpg", "", ""]; | ||
+ | theimage[8]=["https://static.igem.org/mediawiki/2013/8/8c/8.jpg", "", ""]; | ||
+ | theimage[9]=["https://static.igem.org/mediawiki/2013/3/30/9.jpg", "", ""]; | ||
+ | theimage[10]=["https://static.igem.org/mediawiki/2013/a/ae/10.jpg", "", ""]; | ||
+ | theimage[11]=["https://static.igem.org/mediawiki/2013/6/62/11.jpg", "", ""]; | ||
+ | theimage[12]=["https://static.igem.org/mediawiki/2013/8/8d/12.jpg", "", ""]; | ||
+ | theimage[13]=["https://static.igem.org/mediawiki/2013/9/94/13.jpg", "", ""]; | ||
+ | theimage[14]=["https://static.igem.org/mediawiki/2013/e/ed/14.jpg", "", ""]; | ||
+ | theimage[15]=["https://static.igem.org/mediawiki/2013/d/db/15.jpg", "", ""]; | ||
+ | theimage[16]=["https://static.igem.org/mediawiki/2013/e/e8/19.jpg", "", ""]; | ||
+ | theimage[17]=["https://static.igem.org/mediawiki/2013/0/03/21.jpg", "", ""]; | ||
+ | theimage[18]=["https://static.igem.org/mediawiki/2013/1/13/22.jpg", "", ""]; | ||
+ | |||
+ | ///// Plugin variables | ||
+ | |||
+ | playspeed=3000;// The playspeed determines the delay for the "Play" button in ms | ||
+ | //##### | ||
+ | //key that holds where in the array currently are | ||
+ | i=0; | ||
+ | |||
+ | |||
+ | //########################################### | ||
+ | window.onload=function(){ | ||
+ | |||
+ | //preload images into browser | ||
+ | preloadSlide(); | ||
+ | |||
+ | //set the first slide | ||
+ | SetSlide(0); | ||
+ | |||
+ | //autoplay | ||
+ | PlaySlide(); | ||
+ | } | ||
+ | |||
+ | //########################################### | ||
+ | function SetSlide(num) { | ||
+ | //too big | ||
+ | i=num%theimage.length; | ||
+ | //too small | ||
+ | if(i<0)i=theimage.length-1; | ||
+ | |||
+ | //switch the image | ||
+ | document.images.imgslide.src=theimage[i][0]; | ||
+ | |||
+ | //if they want name of current slide | ||
+ | document.getElementById('slidebox').innerHTML=theimage[i][2]; | ||
+ | |||
+ | } | ||
+ | |||
+ | |||
+ | //########################################### | ||
+ | function PlaySlide() { | ||
+ | if (!window.playing) { | ||
+ | PlayingSlide(i+1); | ||
+ | if(document.slideshow.play){ | ||
+ | document.slideshow.play.value=" Stop "; | ||
+ | } | ||
+ | } | ||
+ | else { | ||
+ | playing=clearTimeout(playing); | ||
+ | if(document.slideshow.play){ | ||
+ | document.slideshow.play.value=" Play "; | ||
+ | } | ||
+ | } | ||
+ | // if you have to change the image for the "playing" slide | ||
+ | if(document.images.imgPlay){ | ||
+ | setTimeout('document.images.imgPlay.src="'+imgStop+'"',1); | ||
+ | imgStop=document.images.imgPlay.src | ||
+ | } | ||
+ | } | ||
+ | |||
+ | |||
+ | //########################################### | ||
+ | function PlayingSlide(num) { | ||
+ | playing=setTimeout('PlayingSlide(i+1);SetSlide(i+1);', playspeed); | ||
+ | } | ||
+ | |||
+ | |||
+ | //########################################### | ||
+ | function preloadSlide() { | ||
+ | for(k=0;k<theimage.length;k++) { | ||
+ | theimage[k][0]=new Image().src=theimage[k][0]; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | |||
+ | </script> | ||
+ | |||
+ | |||
+ | <!-- slide show HTML --> | ||
+ | <form name="slideshow"> | ||
+ | |||
+ | <table border="1" cellpadding="2" cellspacing="0"> | ||
+ | <tr> | ||
+ | <td align="center"> | ||
+ | <a href="#" onmouseover="this.href=theimage[i][1];return false"> | ||
+ | <script type="text/javascript"> | ||
+ | document.write('<img name="imgslide" id="imgslide" src="'+theimage[0][0]+'" border="0">') | ||
+ | </script> | ||
+ | </a> | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td align="center"><div id="slidebox"></div></td> | ||
+ | </tr> | ||
+ | </table> | ||
+ | |||
+ | </form> | ||
+ | <!-- end of slide show HTML --> |
Revision as of 14:40, 6 June 2013
Summer Fun