Difference between revisions of "Team:Minnesota/Practices"

Line 770: Line 770:
  
 
</div>  
 
</div>  
 +
 +
 +
<div class="rightNavButtons">
 +
 +
<!-- 2015 edit
 +
<div style="position:absolute;left:5px;top:75px;">
 +
<a href="C:\Documents and Settings\aj\Desktop\IGEM webpage/Project/Caffeine_Yeast"><img id="mainRightButton2" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/caffeinatedbread_gold_img.png"></a>
 +
</div>
 +
<div style="position:absolute;left:5px;top:150px;">
 +
<a href="C:\Documents and Settings\aj\Desktop\IGEM webpage/Project/UV_Absorption"><img id="mainRightButton3" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/bacterialsunscreen_gold_img.png"></a>
 +
</div>
 +
END 2015 edit-->
 +
 +
</div><!--end rightNavButtons-->
 +
 +
$(document).ready(function(){
 +
 +
  // jQuery functions go here...
 +
 +
//vertical autocenter
 +
$(window).resize(function(){
 +
  $('#ContentAll').css({
 +
    position:'absolute',
 +
    top: ($(window).height() - $('#ContentAll').outerHeight())/2
 +
  });
 +
  $('#bgImageDiv').css({
 +
    position:'absolute',
 +
    top: -1*($(window).height() - $('#bgImageDiv').height())/2
 +
  });
 +
 +
});
 +
 +
$(window).resize();
 +
//end vertial autocenter
 +
 +
//background image centering
 +
  
 
var keeper;
 
var keeper;
Line 807: Line 844:
 
}); //ends .ready function
 
}); //ends .ready function
 
   
 
   
 
<div class="rightNavButtons">
 
 
<!-- 2015 edit
 
<div style="position:absolute;left:5px;top:75px;">
 
<a href="C:\Documents and Settings\aj\Desktop\IGEM webpage/Project/Caffeine_Yeast"><img id="mainRightButton2" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/caffeinatedbread_gold_img.png"></a>
 
</div>
 
<div style="position:absolute;left:5px;top:150px;">
 
<a href="C:\Documents and Settings\aj\Desktop\IGEM webpage/Project/UV_Absorption"><img id="mainRightButton3" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/bacterialsunscreen_gold_img.png"></a>
 
</div>
 
END 2015 edit-->
 
 
</div><!--end rightNavButtons-->
 
 
 
  
  

Revision as of 21:42, 18 September 2015

Team:Minnesota/Project - 2015.igem.org

 

Team:Minnesota/Project

From 2015.igem.org

Team:Minnesota - Main Style Template Team:Minnesota - Project

With a nod towards macroscopic eukaryotic networks, our iGEM was interested in identifying how both the public and scientific communities communication. Therefore, we complete a meta-analysis of the Biobrick registry, analyzed patterns in social media communication, and led initiatives for education. Click on the icons below to learn more!

$(document).ready(function(){ // jQuery functions go here... //vertical autocenter $(window).resize(function(){ $('#ContentAll').css({ position:'absolute', top: ($(window).height() - $('#ContentAll').outerHeight())/2 }); $('#bgImageDiv').css({ position:'absolute', top: -1*($(window).height() - $('#bgImageDiv').height())/2 }); }); $(window).resize(); //end vertial autocenter //background image centering var keeper; $("#mainRightButton1").hover( function() { keeper = $(this).attr("src"); var keeper2 = keeper.replace("img","txt"); $(this).attr("src",keeper2); }, function() {$(this).attr("src",keeper);} ); $("#mainRightButton2").hover( function() { keeper = $(this).attr("src"); var keeper2 = keeper.replace("http://i791.photobucket.com/albums/yy194/GopheriGEM/pes_maroon_img_zps10b17630.png","http://i791.photobucket.com/albums/yy194/GopheriGEM/pes_gold_txt_zps96347d4e.png"); $(this).attr("src",keeper2); }, function() {$(this).attr("src",keeper);} ); $("#mainRightButton3").hover( function() { keeper = $(this).attr("src"); var keeper2 = keeper.replace("http://i791.photobucket.com/albums/yy194/GopheriGEM/insulin_maroon_img_zpsfc8c87cc.png","http://i791.photobucket.com/albums/yy194/GopheriGEM/insulin_gold_txt_zps6a94b6c8.png"); $(this).attr("src",keeper2); }, function() {$(this).attr("src",keeper);} ); }); //ends .ready function