Team:UCL PG

From 2013.igem.org

(Difference between revisions)
 
(8 intermediate revisions not shown)
Line 3: Line 3:
<head>
<head>
-
 
-
<script type="text/javascript">
 
-
// <![CDATA[
 
-
var colour="random"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
 
-
var sparkles=50;
 
-
 
-
/****************************
 
-
*  Tinkerbell Magic Sparkle *
 
-
*(c)2005-13 mf2fm web-design*
 
-
*  http://www.mf2fm.com/rv  *
 
-
* DON'T EDIT BELOW THIS BOX *
 
-
****************************/
 
-
var x=ox=400;
 
-
var y=oy=300;
 
-
var swide=800;
 
-
var shigh=600;
 
-
var sleft=sdown=0;
 
-
var tiny=new Array();
 
-
var star=new Array();
 
-
var starv=new Array();
 
-
var starx=new Array();
 
-
var stary=new Array();
 
-
var tinyx=new Array();
 
-
var tinyy=new Array();
 
-
var tinyv=new Array();
 
-
 
-
window.onload=function() { if (document.getElementById) {
 
-
  var i, rats, rlef, rdow;
 
-
  for (var i=0; i<sparkles; i++) {
 
-
    var rats=createDiv(3, 3);
 
-
    rats.style.visibility="hidden";
 
-
    rats.style.zIndex="999";
 
-
    document.body.appendChild(tiny[i]=rats);
 
-
    starv[i]=0;
 
-
    tinyv[i]=0;
 
-
    var rats=createDiv(5, 5);
 
-
    rats.style.backgroundColor="transparent";
 
-
    rats.style.visibility="hidden";
 
-
    rats.style.zIndex="999";
 
-
    var rlef=createDiv(1, 5);
 
-
    var rdow=createDiv(5, 1);
 
-
    rats.appendChild(rlef);
 
-
    rats.appendChild(rdow);
 
-
    rlef.style.top="2px";
 
-
    rlef.style.left="0px";
 
-
    rdow.style.top="0px";
 
-
    rdow.style.left="2px";
 
-
    document.body.appendChild(star[i]=rats);
 
-
  }
 
-
  set_width();
 
-
  sparkle();
 
-
}}
 
-
 
-
function sparkle() {
 
-
  var c;
 
-
  if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
 
-
    ox=x;
 
-
    oy=y;
 
-
    for (c=0; c<sparkles; c++) if (!starv[c]) {
 
-
      star[c].style.left=(starx[c]=x)+"px";
 
-
      star[c].style.top=(stary[c]=y+1)+"px";
 
-
      star[c].style.clip="rect(0px, 5px, 5px, 0px)";
 
-
      star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
 
-
      star[c].style.visibility="visible";
 
-
      starv[c]=50;
 
-
      break;
 
-
    }
 
-
  }
 
-
  for (c=0; c<sparkles; c++) {
 
-
    if (starv[c]) update_star(c);
 
-
    if (tinyv[c]) update_tiny(c);
 
-
  }
 
-
  setTimeout("sparkle()", 40);
 
-
}
 
-
 
-
function update_star(i) {
 
-
  if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
 
-
  if (starv[i]) {
 
-
    stary[i]+=1+Math.random()*3;
 
-
    starx[i]+=(i%5-2)/5;
 
-
    if (stary[i]<shigh+sdown) {
 
-
      star[i].style.top=stary[i]+"px";
 
-
      star[i].style.left=starx[i]+"px";
 
-
    }
 
-
    else {
 
-
      star[i].style.visibility="hidden";
 
-
      starv[i]=0;
 
-
      return;
 
-
    }
 
-
  }
 
-
  else {
 
-
    tinyv[i]=50;
 
-
    tiny[i].style.top=(tinyy[i]=stary[i])+"px";
 
-
    tiny[i].style.left=(tinyx[i]=starx[i])+"px";
 
-
    tiny[i].style.width="2px";
 
-
    tiny[i].style.height="2px";
 
-
    tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
 
-
    star[i].style.visibility="hidden";
 
-
    tiny[i].style.visibility="visible"
 
-
  }
 
-
}
 
-
 
-
function update_tiny(i) {
 
-
  if (--tinyv[i]==25) {
 
-
    tiny[i].style.width="1px";
 
-
    tiny[i].style.height="1px";
 
-
  }
 
-
  if (tinyv[i]) {
 
-
    tinyy[i]+=1+Math.random()*3;
 
-
    tinyx[i]+=(i%5-2)/5;
 
-
    if (tinyy[i]<shigh+sdown) {
 
-
      tiny[i].style.top=tinyy[i]+"px";
 
-
      tiny[i].style.left=tinyx[i]+"px";
 
-
    }
 
-
    else {
 
-
      tiny[i].style.visibility="hidden";
 
-
      tinyv[i]=0;
 
-
      return;
 
-
    }
 
-
  }
 
-
  else tiny[i].style.visibility="hidden";
 
-
}
 
-
 
-
document.onmousemove=mouse;
 
-
function mouse(e) {
 
-
  if (e) {
 
-
    y=e.pageY;
 
-
    x=e.pageX;
 
-
  }
 
-
  else {
 
-
    set_scroll();
 
-
    y=event.y+sdown;
 
-
    x=event.x+sleft;
 
-
  }
 
-
}
 
-
 
-
window.onscroll=set_scroll;
 
-
function set_scroll() {
 
-
  if (typeof(self.pageYOffset)=='number') {
 
-
    sdown=self.pageYOffset;
 
-
    sleft=self.pageXOffset;
 
-
  }
 
-
  else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
 
-
    sdown=document.body.scrollTop;
 
-
    sleft=document.body.scrollLeft;
 
-
  }
 
-
  else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
 
-
    sleft=document.documentElement.scrollLeft;
 
-
    sdown=document.documentElement.scrollTop;
 
-
  }
 
-
  else {
 
-
    sdown=0;
 
-
    sleft=0;
 
-
  }
 
-
}
 
-
 
-
window.onresize=set_width;
 
-
function set_width() {
 
-
  var sw_min=999999;
 
-
  var sh_min=999999;
 
-
  if (document.documentElement && document.documentElement.clientWidth) {
 
-
    if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
 
-
    if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
 
-
  }
 
-
  if (typeof(self.innerWidth)=='number' && self.innerWidth) {
 
-
    if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
 
-
    if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
 
-
  }
 
-
  if (document.body.clientWidth) {
 
-
    if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
 
-
    if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
 
-
  }
 
-
  if (sw_min==999999 || sh_min==999999) {
 
-
    sw_min=800;
 
-
    sh_min=600;
 
-
  }
 
-
  swide=sw_min;
 
-
  shigh=sh_min;
 
-
}
 
-
 
-
function createDiv(height, width) {
 
-
  var div=document.createElement("div");
 
-
  div.style.position="absolute";
 
-
  div.style.height=height+"px";
 
-
  div.style.width=width+"px";
 
-
  div.style.overflow="hidden";
 
-
  return (div);
 
-
}
 
-
 
-
function newColour() {
 
-
  var c=new Array();
 
-
  c[0]=255;
 
-
  c[1]=Math.floor(Math.random()*256);
 
-
  c[2]=Math.floor(Math.random()*(256-c[1]/2));
 
-
  c.sort(function(){return (0.5 - Math.random());});
 
-
  return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
 
-
}
 
-
// ]]>
 
-
</script>
 
-
 
   <style type="text/css">
   <style type="text/css">
       body{ background: #000000 url('https://dl.dropboxusercontent.com/u/45600819/SpectraWiki/HomeTest/broken_noise.png') top left repeat; overflow-x:hidden; border: none; margin: 0; padding: 0; width: 100%; height:100%; }
       body{ background: #000000 url('https://dl.dropboxusercontent.com/u/45600819/SpectraWiki/HomeTest/broken_noise.png') top left repeat; overflow-x:hidden; border: none; margin: 0; padding: 0; width: 100%; height:100%; }
Line 244: Line 44:
     </style>
     </style>
<!-- MENUBAR -->
<!-- MENUBAR -->
 +
 +
<style type="text/css">
 +
a.tooltip {outline:none; }
 +
a.tooltip strong {line-height:30px;}
 +
a.tooltip:hover {text-decoration:none;}
 +
a.tooltip circle { z-index:10;display:none; margin-top:0px; margin-left:-80px; margin-top:-10px; width:80px; height:80px; font-size:1em;}
 +
a.tooltip circle { border-radius:80px; -moz-border-radius: 80px; -webkit-border-radius: 80px; -moz-box-shadow: 0px 0px 10px 5px #666; -webkit-box-shadow: 0px 0px 10px 5px #666; box-shadow: 0px 0px 10px 5px #666; opacity: 0.7; }
 +
a.tooltip:hover circle{ display:inline; position:absolute; border:5px solid #FFF; color:#000;}
 +
 +
a.tooltip span { z-index:10;display:none; margin-top:0px; margin-left:-75px; margin-top:-35px; width:80px; font-size:1.5em; font-family:Georgia; text-align:center;}
 +
a.tooltip:hover span{ display:inline; position:absolute; color:#FFF;}
 +
</style>
 +
   <div class="center">
   <div class="center">
   <div id="theTitle" class="inline"><a href="https://2013.igem.org/Team:UCL_PG">
   <div id="theTitle" class="inline"><a href="https://2013.igem.org/Team:UCL_PG">
Line 251: Line 64:
   <span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
   <span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
   <div id="theMenu" class="inline">
   <div id="theMenu" class="inline">
-
       <a href="https://2013.igem.org/Team:UCL_PG/Team"><input title="Team" type="image" src="https://dl.dropboxusercontent.com/u/45600819/SpectraWiki/HomeTest/beams-aura.png" width=70></a>
+
       <a href="https://2013.igem.org/Team:UCL_PG/Team" class="tooltip"><input type="image" src="https://dl.dropboxusercontent.com/u/45600819/SpectraWiki/Menubar/%5B1%5Dbeams-aura.png" width=70><circle></circle><span>Team</span></a>
-
       <a href="https://2013.igem.org/UCLPG:Underconstruction"><input title="Science" style="opacity:0.5;" type="image" src="https://dl.dropboxusercontent.com/u/45600819/SpectraWiki/HomeTest/fizzing-flask.png" width=70></a>
+
       <a href="https://2013.igem.org/Team:UCL_PG/Project" class="tooltip"><input type="image" src="https://dl.dropboxusercontent.com/u/45600819/SpectraWiki/Menubar/%5B2%5Dfizzing-flask.png" width=70><circle></circle><span>Science</span></a>
-
       <a href="https://2013.igem.org/UCLPG:Underconstruction"><input title="Social" style="opacity:0.5;" type="image" src="https://dl.dropboxusercontent.com/u/45600819/SpectraWiki/HomeTest/radar-dish.png" width=70></a>
+
       <a href="https://2013.igem.org/Team:UCL_PG/Social" class="tooltip"><input type="image" src="https://dl.dropboxusercontent.com/u/45600819/SpectraWiki/Menubar/%5B3%5Dradar-dish.png" width=70><circle></circle><span>Social</span></a>
-
       <a href="https://2013.igem.org/UCLPG:Underconstruction"><input title="Achievement" style="opacity:0.5;" type="image" src="https://dl.dropboxusercontent.com/u/45600819/SpectraWiki/HomeTest/medal.png" width=70></a>
+
       <a href="https://2013.igem.org/Team:UCL_PG/Parts" class="tooltip"><input type="image" src="https://dl.dropboxusercontent.com/u/45600819/SpectraWiki/Menubar/%5B4%5Dmedal.png" width=70><circle></circle><span>Achievements</span></a>
-
       <a href="https://2013.igem.org/Team:UCL_PG/Notebook"><input title="Notebook" type="image" src="https://dl.dropboxusercontent.com/u/45600819/SpectraWiki/HomeTest/book-cover.png" width=70></a>
+
       <a href="https://2013.igem.org/Team:UCL_PG/Notebook" class="tooltip"><input type="image" src="https://dl.dropboxusercontent.com/u/45600819/SpectraWiki/Menubar/%5B5%5Dbook-cover.png" width=70><circle></circle><span>Labbook</span></a>
-
       <a href="https://2013.igem.org/Team:UCL_PG/Sponsor"><input title="Sponsors" type="image" src="https://dl.dropboxusercontent.com/u/45600819/SpectraWiki/HomeTest/prayer.png" width=70></a>
+
       <a href="https://2013.igem.org/Team:UCL_PG/Sponsor" class="tooltip"><input type="image" src="https://dl.dropboxusercontent.com/u/45600819/SpectraWiki/Menubar/%5B6%5Dprayer.png" width=70><circle></circle><span>Sponsors</span></a>
-
       <a href="https://2013.igem.org/Team:UCL_PG/Contact"><input title="Sponsors" type="image" src="https://dl.dropboxusercontent.com/u/45600819/SpectraWiki/HomeTest/envelope.png" width=70></a>
+
       <a href="https://2013.igem.org/Team:UCL_PG/Contact" class="tooltip"><input type="image" src="https://dl.dropboxusercontent.com/u/45600819/SpectraWiki/Menubar/%5B7%5DIGEM_basic_Logo_stylized.png" width=70><circle></circle><span>Contacts</span></a>
     </div>
     </div>
Line 278: Line 91:
           <div class="boxed roundBorder inline" style=" width:300px; height:180px;">
           <div class="boxed roundBorder inline" style=" width:300px; height:180px;">
             <p style="color:white; font-size:2.9em;"><b>About us</b></p>
             <p style="color:white; font-size:2.9em;"><b>About us</b></p>
-
             <p style="color:#CDC9C9; font-size:1.1em;">We are a combination of dedicated graduate students and research assistants from both <a href="http://www.ucl.ac.uk/cancer">UCL Cancer Institute</a> and <a href="http://www.engineering.ucl.ac.uk/">UCL Engineering</a>.</p>
+
             <p style="color:#CDC9C9; font-size:1.1em;">We are a combination of dedicated graduate and master students from both <a href="http://www.ucl.ac.uk/cancer">UCL Cancer Institute</a> and <a href="http://www.engineering.ucl.ac.uk/">UCL Biochemical Engineering</a>.</p>
           </div>
           </div>
           <div class="boxed roundBorder inline" style=" width:260px; height:300px;">
           <div class="boxed roundBorder inline" style=" width:260px; height:300px;">

Latest revision as of 00:31, 4 October 2013

    

About iGEM

International Genetically Engineered Machine (iGEM) is an annual world-wide synthetic biology competition aimed at university students. Each year, participating teams from all over the world are challenged to bring their innovative ideas to life by applying engineering methodology in life sciences to ultimately produce “Biobricks” which are modular biological circuit parts that can be utilized to solve global issues.

About us

We are a combination of dedicated graduate and master students from both UCL Cancer Institute and UCL Biochemical Engineering.

About our idea

Improvising activation of the circuit with light, evolve luminescent proteins. Allow preclinical genetic imaging to study endogenous and disease processes in vivo and to image the genetic behaviour of life.