Team:Columbia-Cooper-NYC
From 2012.igem.org
(Difference between revisions)
MChowdhury (Talk | contribs) |
|||
Line 1: | Line 1: | ||
<!--- The Mission, Experiments ---> | <!--- The Mission, Experiments ---> | ||
- | + | <!-- | |
{| style="color:#1b2c8a;background-color:#0c6;" cellpadding="3" cellspacing="1" border="1" bordercolor="#fff" width="62%" align="center" | {| style="color:#1b2c8a;background-color:#0c6;" cellpadding="3" cellspacing="1" border="1" bordercolor="#fff" width="62%" align="center" | ||
!align="center"|[[Team:Columbia-Cooper-NYC|Home]] | !align="center"|[[Team:Columbia-Cooper-NYC|Home]] | ||
Line 14: | Line 14: | ||
!align="center"|[[Team:Columbia-Cooper-NYC/Trial|Trial]] | !align="center"|[[Team:Columbia-Cooper-NYC/Trial|Trial]] | ||
|} | |} | ||
+ | --> | ||
+ | |||
+ | |||
<html> | <html> | ||
+ | <head> | ||
+ | <script> | ||
+ | var timeout = 500; | ||
+ | var closetimer = 0; | ||
+ | var ddmenuitem = 0; | ||
+ | |||
+ | function mopen(id) | ||
+ | { | ||
+ | // cancel close timer | ||
+ | mcancelclosetime(); | ||
+ | |||
+ | // close old layer | ||
+ | if(ddmenuitem) ddmenuitem.style.visibility = 'hidden'; | ||
+ | |||
+ | // get new layer and show it | ||
+ | ddmenuitem = document.getElementById(id); | ||
+ | ddmenuitem.style.visibility = 'visible'; | ||
+ | |||
+ | } | ||
+ | function mclose() | ||
+ | { | ||
+ | if(ddmenuitem) ddmenuitem.style.visibility = 'hidden'; | ||
+ | } | ||
+ | |||
+ | function mclosetime() | ||
+ | { | ||
+ | closetimer = window.setTimeout(mclose, timeout); | ||
+ | } | ||
+ | |||
+ | function mcancelclosetime() | ||
+ | { | ||
+ | if(closetimer) | ||
+ | { | ||
+ | window.clearTimeout(closetimer); | ||
+ | closetimer = null; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | document.onclick = mclose; | ||
+ | </script> | ||
+ | </head> | ||
+ | |||
+ | <body> | ||
+ | <ul id="sddm"> | ||
+ | <li><a href="#" | ||
+ | onmouseover="mopen('m1')" | ||
+ | onmouseout="mclosetime()">Home</a> | ||
+ | <div id="m1" | ||
+ | onmouseover="mcancelclosetime()" | ||
+ | onmouseout="mclosetime()"> | ||
+ | <a href="#">HTML/CSS</a> | ||
+ | <a href="#">DHTML Menu</a> | ||
+ | <a href="#">JavaScript</a> | ||
+ | </div> | ||
+ | </li> | ||
+ | <li><a href="#" | ||
+ | onmouseover="mopen('m2')" | ||
+ | onmouseout="mclosetime()">Download</a> | ||
+ | <div id="m2" | ||
+ | onmouseover="mcancelclosetime()" | ||
+ | onmouseout="mclosetime()"> | ||
+ | <a href="#">ASP Server-side</a> | ||
+ | <a href="#">Pulldown navigation</a> | ||
+ | <a href="#">AJAX Drop Submenu</a> | ||
+ | <a href="#">DIV Cascading </a> | ||
+ | </div> | ||
+ | </li> | ||
+ | <li><a href="#">Genetics</a></li> | ||
+ | <li><a href="#">Help</a></li> | ||
+ | <li><a href="#">Contact</a></li> | ||
+ | </ul> | ||
+ | <div style="clear:both"></div> | ||
+ | |||
+ | </body> | ||
+ | <style type = "text/css"> | ||
+ | #sddm | ||
+ | { margin: 0; | ||
+ | padding: 0; | ||
+ | z-index: 30} | ||
+ | |||
+ | #sddm li | ||
+ | { margin: 0; | ||
+ | padding: 0; | ||
+ | list-style: none; | ||
+ | float: left; | ||
+ | font: bold 11px arial} | ||
+ | |||
+ | #sddm li a | ||
+ | { display: block; | ||
+ | margin: 0 1px 0 0; | ||
+ | padding: 4px 10px; | ||
+ | width: 60px; | ||
+ | background: #5970B2; | ||
+ | color: #FFF; | ||
+ | text-align: center; | ||
+ | text-decoration: none} | ||
+ | |||
+ | #sddm li a:hover | ||
+ | { background: #49A3FF} | ||
+ | |||
+ | #sddm div | ||
+ | { position: absolute; | ||
+ | visibility: hidden; | ||
+ | margin: 0; | ||
+ | padding: 0; | ||
+ | background: #EAEBD8; | ||
+ | border: 1px solid #5970B2} | ||
+ | |||
+ | #sddm div a | ||
+ | { position: relative; | ||
+ | display: block; | ||
+ | margin: 0; | ||
+ | padding: 5px 10px; | ||
+ | width: auto; | ||
+ | white-space: nowrap; | ||
+ | text-align: left; | ||
+ | text-decoration: none; | ||
+ | background: #EAEBD8; | ||
+ | color: #2875DE; | ||
+ | font: 11px arial} | ||
+ | |||
+ | #sddm div a:hover | ||
+ | { background: #49A3FF; | ||
+ | color: #FFF} | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | <!-- | ||
<head> | <head> | ||
<style> | <style> | ||
Line 39: | Line 174: | ||
<h2>Project Description</h2> | <h2>Project Description</h2> | ||
<p>The Columbia-Cooper iGEM team is working with Acidithiobacillus ferrooxidans to create a light-controlled printed circuit board manufacturing process. This bacteria’s metabolism relies on its ability to oxidize iron; the iron can then be used to oxidize, and in turn solubilize, copper. By genetically altering the bacteria, we intend to install a light sensitive mechanism which will enable us to etch copper in a desired pattern, leaving a finished circuit board.</p> | <p>The Columbia-Cooper iGEM team is working with Acidithiobacillus ferrooxidans to create a light-controlled printed circuit board manufacturing process. This bacteria’s metabolism relies on its ability to oxidize iron; the iron can then be used to oxidize, and in turn solubilize, copper. By genetically altering the bacteria, we intend to install a light sensitive mechanism which will enable us to etch copper in a desired pattern, leaving a finished circuit board.</p> | ||
+ | --> |
Revision as of 18:50, 11 August 2012
Project Description
The Columbia-Cooper iGEM team is working with Acidithiobacillus ferrooxidans to create a light-controlled printed circuit board manufacturing process. This bacteria’s metabolism relies on its ability to oxidize iron; the iron can then be used to oxidize, and in turn solubilize, copper. By genetically altering the bacteria, we intend to install a light sensitive mechanism which will enable us to etch copper in a desired pattern, leaving a finished circuit board.
-->