Team:Tianjin/Team

From 2011.igem.org

(Difference between revisions)
 
(30 intermediate revisions not shown)
Line 86: Line 86:
   });
   });
  });
  });
 +
</script>
</script>
-
<script type="text/javascript" src="http://ryf010.web-43.com/js/1.js">
 
-
 
-
</script>
 
-
<script type="text/javascript" src="http://ryf010.web-43.com/js/2.js">
 
-
 
-
 
-
</script>
 
-
<script type="text/javascript" src="http://ryf010.web-43.com/js/3.js">
 
-
 
-
</script>
 
<script type="text/javascript">
<script type="text/javascript">
(function($,sr){
(function($,sr){
Line 118: Line 109:
})(jQuery,'smartresize');
})(jQuery,'smartresize');
</script>
</script>
-
         <script type="text/javascript" src="http://ryf010.web-43.com/js/5.js">
+
         <script type="text/javascript">
 +
        $(function() {
 +
var ie = false;
 +
if ($.browser.msie)
 +
ie = true;
 +
var flg_click = true;
 +
                var $im_wrapper = $('#im_wrapper');
 +
var $thumbs = $im_wrapper.children('div');
 +
var $thumb_imgs = $thumbs.find('img');
 +
var nmb_thumbs = $thumbs.length;
 +
var $im_loading = $('#im_loading');
 +
var $im_next = $('#im_next');
 +
var $im_prev = $('#im_prev');
 +
var per_line = 6;
 +
var per_col = Math.ceil(nmb_thumbs/per_line)
 +
var current = -1;
 +
var mode = 'grid';
 +
var positionsArray = [];
 +
for(var i = 0; i < nmb_thumbs; ++i)
 +
positionsArray[i]=i;
 +
 +
$im_loading.show();
 +
var loaded = 0;
 +
$thumb_imgs.each(function(){
 +
var $this = $(this);
 +
$('<img/>').load(function(){
 +
++loaded;
 +
if(loaded == nmb_thumbs*2)
 +
start();
 +
}).attr('src',$this.attr('src'));
 +
$('<img/>').load(function(){
 +
++loaded;
 +
if(loaded == nmb_thumbs*2)
 +
start();
 +
}).attr('src',$this.attr('src').replace('/thumbs',''));
 +
});
 +
 +
function start(){
 +
$im_loading.hide();
 +
disperse();
 +
}
 +
 +
function disperse(){
 +
if(!flg_click) return;
 +
setflag();
 +
mode = 'grid';
 +
var spaces_w = $(window).width()/(per_line + 6);
 +
var spaces_h = $(window).height()/(per_col + 1);
 +
$thumbs.each(function(i){
 +
var $thumb = $(this);
 +
var left = spaces_w*((i%per_line)+1) - $thumb.width()/2;
 +
var top = spaces_h*(Math.ceil((i+1)/per_line)) - $thumb.height()/2;
 +
var r = Math.floor(Math.random()*21)-20;
 +
/*
 +
now we animate the thumb to its final positions;
 +
we also fade in its image, animate it to 115x115,
 +
and remove any background image of the thumb - this
 +
is not relevant for the first time we call disperse,
 +
but when changing from single to grid mode
 +
*/
 +
if(ie)
 +
var param = {
 +
'left' : left + 'px',
 +
'top' : top + 'px'
 +
};
 +
else
 +
var param = {
 +
'left' : left + 'px',
 +
'top' : top + 'px',
 +
'rotate' : r + 'deg'
 +
};
 +
$thumb.stop()
 +
.animate(param,700,function(){
 +
if(i==nmb_thumbs-1)
 +
setflag();
 +
})
 +
.find('img')
 +
.fadeIn(700,function(){
 +
$thumb.css({
 +
'background-image' : 'none'
 +
});
 +
$(this).animate({
 +
'width' : '80px',
 +
'height' : '80px',
 +
'marginTop' : '2px',
 +
'marginLeft': '2px'
 +
},50);
 +
});
 +
});
 +
}
 +
 +
function setflag(){
 +
flg_click = !flg_click
 +
}
 +
 +
$thumbs.bind('click',function(){
 +
if(!flg_click) return;
 +
setflag();
 +
 +
var $this = $(this);
 +
current = $this.index();
 +
 +
if(mode == 'grid'){
 +
mode = 'single';
 +
var image_src = $this.find('img').attr('src').replace('/thumbs','');
 +
 +
$thumbs.each(function(i){
 +
var $thumb = $(this);
 +
var $image = $thumb.find('img');
 +
$image.stop().animate({
 +
'width' : '100%',
 +
'height' : '100%',
 +
'marginTop' : '0px',
 +
'marginLeft': '0px'
 +
},100,function(){
 +
//calculate the dimentions of the full image
 +
var f_w = per_line * 80;
 +
var f_h = per_col * 80;
 +
var f_l = $(window).width()/5 - f_w/2;
 +
var f_t = $(window).height()/2 - f_h/2 ;
 +
if(ie)
 +
var param = {
 +
'left' : f_l + (i%per_line)*80 + 'px',
 +
'top' : f_t + Math.floor(i/per_line)*80 + 'px'
 +
};
 +
else
 +
var param = {
 +
'rotate': '0deg',
 +
'left' : f_l + (i%per_line)*80 + 'px',
 +
'top' : f_t + Math.floor(i/per_line)*80 + 'px'
 +
};
 +
$thumb.css({
 +
'background-image' : 'url('+image_src+')'
 +
}).stop()
 +
.animate(param,660,function(){
 +
if(i==nmb_thumbs-1){
 +
addNavigation();
 +
setflag();
 +
}
 +
});
 +
$image.fadeOut(700);
 +
});
 +
});
 +
}
 +
else{
 +
setflag();
 +
removeNavigation();
 +
disperse();
 +
}
 +
});
 +
function removeNavigation(){
 +
$im_next.stop().animate({'right':'-50px'},300);
 +
$im_prev.stop().animate({'left':'-50px'},300);
 +
}
 +
function addNavigation(){
 +
$im_next.stop().animate({'right':'0px'},300);
 +
$im_prev.stop().animate({'left':'0px'},300);
 +
}
 +
$im_next.bind('click',function(){
 +
if(!flg_click) return;
 +
setflag();
 +
 +
++current;
 +
var $next_thumb = $im_wrapper.children('div:nth-child('+(current+1)+')');
 +
if($next_thumb.length>0){
 +
var image_src = $next_thumb.find('img').attr('src').replace('/thumbs','');
 +
var arr = Array.shuffle(positionsArray.slice(0));
 +
$thumbs.each(function(i){
 +
var t = $(this);
 +
setTimeout(function(){
 +
t.css({
 +
'background-image' : 'url('+image_src+')'
 +
});
 +
if(i == nmb_thumbs-1)
 +
setflag();
 +
},arr.shift()*20);
 +
});
 +
}
 +
else{
 +
setflag();
 +
--current;
 +
return;
 +
}
 +
});
 +
$im_prev.bind('click',function(){
 +
if(!flg_click) return;
 +
setflag();
 +
--current;
 +
var $prev_thumb = $im_wrapper.children('div:nth-child('+(current+1)+')');
 +
if($prev_thumb.length>0){
 +
var image_src = $prev_thumb.find('img').attr('src').replace('/thumbs','');
 +
var arr = Array.shuffle(positionsArray.slice(0));
 +
$thumbs.each(function(i){
 +
var t = $(this);
 +
setTimeout(function(){
 +
t.css({
 +
'background-image' : 'url('+image_src+')'
 +
});
 +
if(i == nmb_thumbs-1)
 +
setflag();
 +
},arr.shift()*20);
 +
});
 +
}
 +
else{
 +
setflag();
 +
++current;
 +
return;
 +
}
 +
});
 +
$(window).smartresize(function(){
 +
removeNavigation()
 +
disperse();
 +
});
 +
Array.shuffle = function( array ){
 +
for(
 +
var j, x, i = array.length; i;
 +
j = parseInt(Math.random() * i),
 +
x = array[--i], array[i] = array[j], array[j] = x
 +
);
 +
return array;
 +
};
 +
            });
      
      
         </script>
         </script>
Line 127: Line 339:
background-image:url(https://static.igem.org/mediawiki/2011/2/20/TJU-bg.png);
background-image:url(https://static.igem.org/mediawiki/2011/2/20/TJU-bg.png);
 +
        background-attachment: fixed;
}
}
#catlinks{display:none;}
#catlinks{display:none;}
Line 136: Line 349:
}
}
#footer-box{
#footer-box{
-
position:absolute;
 
top:1200px;
top:1200px;
left:250px;}
left:250px;}
Line 175: Line 387:
       background: url(https://static.igem.org/mediawiki/2011/a/a0/TJU-Home.png) 0px 0px repeat-x; }
       background: url(https://static.igem.org/mediawiki/2011/a/a0/TJU-Home.png) 0px 0px repeat-x; }
div#global #head #head3 a,a:visited,a:active{
div#global #head #head3 a,a:visited,a:active{
-
background: url(https://static.igem.org/mediawiki/2011/7/73/TJU-Project.png) 0px -78px repeat-x;
+
background: url(https://static.igem.org/mediawiki/2011/5/57/TJU-Data.png) 0px -78px repeat-x;
         list-style:none;
         list-style:none;
         border:0;
         border:0;
Line 187: Line 399:
}
}
div#global #head #head3 a:hover{
div#global #head #head3 a:hover{
-
       background: url(https://static.igem.org/mediawiki/2011/7/73/TJU-Project.png) 0px 0px repeat-x; }
+
       background: url(https://static.igem.org/mediawiki/2011/5/57/TJU-Data.png) 0px 0px repeat-x; }
div#global #head #head4 a,a:visited,a:active{
div#global #head #head4 a,a:visited,a:active{
-
background: url(https://static.igem.org/mediawiki/2011/a/a3/TJU-Notepad.png) 0px -78px repeat-x;
+
background: url(https://static.igem.org/mediawiki/2011/7/73/TJU-Project.png) 0px -78px repeat-x;
         list-style:none;
         list-style:none;
         border:0;
         border:0;
Line 201: Line 413:
}
}
div#global #head #head4 a:hover{
div#global #head #head4 a:hover{
-
       background: url(https://static.igem.org/mediawiki/2011/a/a3/TJU-Notepad.png) 0px 0px repeat-x; }
+
       background: url(https://static.igem.org/mediawiki/2011/7/73/TJU-Project.png) 0px 0px repeat-x; }
div#global #head #head5 a,a:visited,a:active{
div#global #head #head5 a,a:visited,a:active{
-
background: url(https://static.igem.org/mediawiki/2011/8/80/TJU-Safety.png) 0px -78px repeat-x;
+
background: url(https://static.igem.org/mediawiki/2011/a/a3/TJU-Notepad.png) 0px -78px repeat-x;
         list-style:none;
         list-style:none;
         border:0;
         border:0;
Line 215: Line 427:
}
}
div#global #head #head5 a:hover{
div#global #head #head5 a:hover{
-
       background: url(https://static.igem.org/mediawiki/2011/8/80/TJU-Safety.png) 0px 0px repeat-x; }
+
       background: url(https://static.igem.org/mediawiki/2011/a/a3/TJU-Notepad.png) 0px 0px repeat-x; }
div#global #head #head6 a,a:visited,a:active{
div#global #head #head6 a,a:visited,a:active{
-
background: url(https://static.igem.org/mediawiki/2011/8/88/TJU-Attributions.png) 0px -78px repeat-x;
+
background: url(https://static.igem.org/mediawiki/2011/8/80/TJU-Safety.png) 0px -78px repeat-x;
         list-style:none;
         list-style:none;
         border:0;
         border:0;
Line 229: Line 441:
}
}
div#global #head #head6 a:hover{
div#global #head #head6 a:hover{
-
       background: url(https://static.igem.org/mediawiki/2011/8/88/TJU-Attributions.png) 0px 0px repeat-x; }
+
       background: url(https://static.igem.org/mediawiki/2011/8/80/TJU-Safety.png) 0px 0px repeat-x; }
div#global #head #head7 a,a:visited,a:active{
div#global #head #head7 a,a:visited,a:active{
background: url(https://static.igem.org/mediawiki/2011/2/2f/TJU-Modeling.png) 0px -78px repeat-x;
background: url(https://static.igem.org/mediawiki/2011/2/2f/TJU-Modeling.png) 0px -78px repeat-x;
Line 245: Line 457:
       background: url(https://static.igem.org/mediawiki/2011/2/2f/TJU-Modeling.png) 0px 0px repeat-x; }
       background: url(https://static.igem.org/mediawiki/2011/2/2f/TJU-Modeling.png) 0px 0px repeat-x; }
div#global #head #head8 a,a:visited,a:active{
div#global #head #head8 a,a:visited,a:active{
-
background: url(https://static.igem.org/mediawiki/2011/5/57/TJU-Data.png) 0px -78px repeat-x;
+
background: url(https://static.igem.org/mediawiki/2011/8/88/TJU-Attributions.png) 0px -78px repeat-x;
         list-style:none;
         list-style:none;
         border:0;
         border:0;
Line 257: Line 469:
}
}
div#global #head #head8 a:hover{
div#global #head #head8 a:hover{
-
       background: url(https://static.igem.org/mediawiki/2011/5/57/TJU-Data.png) 0px 0px repeat-x; }
+
       background: url(https://static.igem.org/mediawiki/2011/8/88/TJU-Attributions.png) 0px 0px repeat-x; }
div#global #main #title {
div#global #main #title {
width:160px;
width:160px;
Line 269: Line 481:
div#global #main #content{
div#global #main #content{
         float:left;
         float:left;
-
position:absolute;
 
-
        left:300px;
 
-
        top:650px;
 
         width:676px;
         width:676px;
-
          
+
         margin:35px;
}
}
-
div#global #main #content_2{
+
div#global #main #content p{
-
        position:absolute;
+
text-align:justify;
-
        top:80px;
+
font-size:14px;
-
        left:200px;
+
-
        width:660px;}
+
-
h1{
+
-
font-size:38px;
+
-
margin:10px;
+
}
}
-
h1 span{
+
div#global #main #content t1{
-
font-size:20px;
+
margin-left:-30px;
 +
font-weight:bold;
 +
font-size:14px;
}
}
-
.im_wrapper div{
+
h1.pos_left{
-
float:left;
+
position:relative;
-
width:84px;
+
left:-36px;
-
height:84px;
+
width:702px;
-
position:absolute;
+
-
background-repeat:no-repeat;
+
-
background-color:#fff;
+
-
cursor:pointer;
+
-
-moz-box-shadow:1px 1px 3px #000;
+
-
-webkit-box-shadow:1px 1px 3px #000;
+
-
box-shadow:1px 1px 3px #000;
+
-
}
+
-
.im_wrapper div img{
+
-
float:left;
+
-
width:80px;
+
-
height:80px;
+
-
margin:5px 0px 0px 5px;
+
-
}
+
-
.im_loading{
+
-
display:none;
+
-
position:fixed;
+
-
top:50%;
+
-
left:50%;
+
-
margin:-35px 0px 0px -35px;
+
-
background:#fff url(https://static.igem.org/mediawiki/2011/8/84/TJU-Loader.gif) no-repeat center scroll;
+
-
width:70px;
+
-
height:70px;
+
-
z-index:9999;
+
-
-moz-border-radius:10px;
+
-
-webkit-border-radius:10px;
+
-
border-radius:10px;
+
-
-moz-box-shadow:1px 1px 3px #000;
+
-
-webkit-box-shadow:1px 1px 3px #000;
+
-
box-shadow:1px 1px 3px #000;
+
-
opacity:0.7;
+
-
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
+
-
}
+
-
.im_next,
+
-
.im_prev{
+
-
width:50px;
+
-
height:50px;
+
-
position:fixed;
+
-
bottom:50%;
+
-
margin-top:-25px;
+
-
cursor:pointer;
+
-
opacity:0.7;
+
-
z-index:1000;
+
-
-moz-box-shadow:0px 0px 3px #000;
+
-
-webkit-box-shadow:0px 0px 3px #000;
+
-
box-shadow:0px 0px 3px #000;
+
-
-moz-border-radius:2px;
+
-
-webkit-border-radius:2px;
+
-
border-radius:2px;
+
-
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
+
-
}
+
-
.im_next:hover,
+
-
.im_prev:hover
+
-
{
+
-
opacity:0.9;
+
-
}
+
-
.im_next{
+
-
background:#fff url(https://static.igem.org/mediawiki/2011/4/41/TJU-next.png) no-repeat center center;
+
-
right:-50px; /*10 to show*/
+
}
}
-
.im_prev{
+
div#global #main #BackToTop{
-
background:#fff url(https://static.igem.org/mediawiki/2011/9/9d/TJU-prev.png) no-repeat center center;
+
position:fixed;
-
left:-50px; /*10 to show*/
+
bottom:0;
 +
right:0;
}
}
-
.description{
 
-
position:fixed;
 
-
right:10px;
 
-
top:100px;
 
-
font-size:12px;
 
-
color:#888;
 
-
}
 
-
span.reference{
 
-
position:fixed;
 
-
left:10px;
 
-
bottom:10px;
 
-
font-size:12px;
 
-
}
 
-
span.reference a{
 
-
color:#888;
 
-
text-transform:uppercase;
 
-
text-decoration:none;
 
-
padding-right:20px;
 
-
}
 
-
span.reference a:hover{
 
-
color:#444;
 
-
}
 
</style>
</style>
</head>
</head>
Line 386: Line 512:
            
            
                 <a href="https://2011.igem.org/Team:Tianjin/Team">
                 <a href="https://2011.igem.org/Team:Tianjin/Team">
-
                         <img src="https://static.igem.org/mediawiki/2011/a/a7/TJU-Team-head.png"/></a>
+
                         <img src="https://static.igem.org/mediawiki/2011/a/a7/TJU-Team-head.png" id="top"></a>
                
                
-
                 <a href="https://2011.igem.org/Team:Tianjin">
+
                 <a href="https://2011.igem.org/Team:Tianjin/Team">
                         </a>
                         </a>
                 </div>
                 </div>
Line 397: Line 523:
                 </div>
                 </div>
               <div id="head3">
               <div id="head3">
-
                 <a href="https://2011.igem.org/Team:Tianjin/Project">
+
                 <a href="https://2011.igem.org/Team:Tianjin/Data">
                 </a>
                 </a>
                 </div>
                 </div>
               <div id="head4">
               <div id="head4">
-
                 <a href="https://2011.igem.org/Team:Tianjin/Notebook">
+
                 <a href="https://2011.igem.org/Team:Tianjin/Project">
                 </a>
                 </a>
                 </div>
                 </div>
               <div id="head5">
               <div id="head5">
-
                 <a href="https://2011.igem.org/Team:Tianjin/Safety">
+
                 <a href="https://2011.igem.org/Team:Tianjin/Notebook">
                 </a>
                 </a>
                 </div>
                 </div>
               <div id="head6">
               <div id="head6">
-
                 <a href="https://2011.igem.org/Team:Tianjin/Attributions">
+
                 <a href="https://2011.igem.org/Team:Tianjin/Safety">
                 </a>
                 </a>
                 </div>
                 </div>
<div id="head7">
<div id="head7">
-
                 <a href="https://2011.igem.org/Team:Tianjin/Attributions">
+
                 <a href="https://2011.igem.org/Team:Tianjin/Modeling">
                 </a>
                 </a>
                 </div>
                 </div>
Line 424: Line 550:
     <div id="title">
     <div id="title">
           <div class="sls" id="slsm" >
           <div class="sls" id="slsm" >
-
         <h2>Instructors</h2>
+
         <h2><img src="https://static.igem.org/mediawiki/2011/f/f3/TJU-Team-Menu-1.png"></h2>
             </div>
             </div>
           <div class="ls" id="slsmm" style="display:none">
           <div class="ls" id="slsmm" style="display:none">
<ul style="list-style:none">
<ul style="list-style:none">
-
    <li id="YY">Yingjin Yuan</li>
+
    <li id="YY"><img src="https://static.igem.org/mediawiki/2011/3/3f/TJU-Team-Menu-1-1.png"></li>
-
    <li id="WL">Wenyu Lu</li>
+
    <li id="WL"><img src="https://static.igem.org/mediawiki/2011/e/ea/TJU-Team-Menu-1-2.png"></li>
   
   
</ul>
</ul>
Line 435: Line 561:
    
    
     <div class="sxs" id="sxsm">
     <div class="sxs" id="sxsm">
-
         <h2>Teammates</h2> </div>
+
         <h2><img src="https://static.igem.org/mediawiki/2011/7/7e/TJU-Team-Menu-2.png"></h2> </div>
     <div class="xs" id="sxsmm" style="display:none">
     <div class="xs" id="sxsmm" style="display:none">
         <ul style="list-style:none">
         <ul style="list-style:none">
-
             <li id="BJ">Bin Jia</li>
+
             <li id="BJ"><img src="https://static.igem.org/mediawiki/2011/c/cd/TJU-Team-Menu-2-1.png"></li>
-
             <li id="BZ">Boxuan Zeng</li>
+
            <li id="YC"><img src="https://static.igem.org/mediawiki/2011/9/9a/TJU-Team-Menu-2-14.png"></li>
-
             <li id="SX">Saisi Xue</li>
+
             <li id="BZ"><img src="https://static.igem.org/mediawiki/2011/5/5e/TJU-Team-Menu-2-2.png"></li>
-
             <li id="MZ">Mingrui Zhao</li>
+
             <li id="SX"><img src="https://static.igem.org/mediawiki/2011/4/4e/TJU-Team-Menu-2-3.png"></li>
-
             <li id="JG">Jing Guo</li>
+
             <li id="MZ"><img src="https://static.igem.org/mediawiki/2011/0/08/TJU-Team-Menu-2-4.png"></li>
-
             <li id="WK">Wenbin Kuang</li>
+
             <li id="JG"><img src="https://static.igem.org/mediawiki/2011/8/88/TJU-Team-Menu-2-5.png"></li>
-
             <li id="YR">Yunfei Ran</li>
+
             <li id="WK"><img src="https://static.igem.org/mediawiki/2011/a/a4/TJU-Team-Menu-2-6.png"></li>
-
             <li id="AW">Andi Wangzhou</li>
+
             <li id="YR"><img src="https://static.igem.org/mediawiki/2011/2/2a/TJU-Team-Menu-2-7.png"></li>
-
             <li id="QW">Qinfeng Wu</li>
+
             <li id="AW"><img src="https://static.igem.org/mediawiki/2011/2/29/TJU-Team-Menu-2-8.png"></li>
-
             <li id="HR">Hengqian Ren</li>
+
             <li id="QW"><img src="https://static.igem.org/mediawiki/2011/1/1f/TJU-Team-Menu-2-9.png"></li>
-
             <li id="EW">Enxu Wang</li>
+
             <li id="HR"><img src="https://static.igem.org/mediawiki/2011/7/73/TJU-Team-Menu-2-10.png"></li>
-
             <li id="LC">Long Chen</li>
+
             <li id="EW"><img src="https://static.igem.org/mediawiki/2011/1/16/TJU-Team-Menu-2-11.png"></li>
-
             <li id="JL">Jingrui Li</li>
+
             <li id="LC"><img src="https://static.igem.org/mediawiki/2011/6/68/TJU-Team-Menu-2-12.png"></li>
 +
             <li id="DT"><img src="https://static.igem.org/mediawiki/2011/8/8d/TJU-Team-Menu-2-13.png"></li>
         </ul>
         </ul>
</div>
</div>
Line 456: Line 583:
     <div id="content">
     <div id="content">
 +
<img src="https://static.igem.org/mediawiki/2011/6/6b/TJU-Team-Photo-All.png">
 +
<div class="bio" id="YYbio">
<div class="bio" id="YYbio">
-
<h1>Yingjin Yuan</h1>
+
<h1><img src="https://static.igem.org/mediawiki/2011/2/22/TJU-Team-Title-YY.png"></h1>
 +
<p>
 +
<div align="left"><img src="https://static.igem.org/mediawiki/2011/4/4a/TJU-Team-Photo-YY.jpg"></div>
 +
<strong>Description:</strong> </p>
<div class="clear"></div>
<div class="clear"></div>
Line 463: Line 595:
<div class="bio" id="WLbio">
<div class="bio" id="WLbio">
-
<h1>Wenyu Lu</h1>
+
<h1><img src="https://static.igem.org/mediawiki/2011/b/b3/TJU-Team-Title-WL.png"></h1>
 +
<p>
 +
<div align="left"><img src="https://static.igem.org/mediawiki/2011/c/c9/TJU-Team-Photo-WL.jpg"  width=320px></div>
 +
<strong>Description:</strong> </p>
<div class="clear"></div>
<div class="clear"></div>
Line 469: Line 604:
<div class="bio" id="BJbio">
<div class="bio" id="BJbio">
-
<h1>Bin Jia</h1>
+
<h1><img src="https://static.igem.org/mediawiki/2011/3/36/TJU-Team-Title-BJ.png"></h1>
 +
<p>
 +
<div align="left"><img src="https://static.igem.org/mediawiki/2011/c/c4/TJU-Team-Photo-BJ.jpg"></div>
 +
<strong>Birthday:</strong> Oct. 28th, 1988</br>
 +
<strong>Hometown:</strong> Shanxi Province, P.R.China</br>
 +
<strong>Discipline:</strong> Bio-engineering</br>
 +
<strong>Role:</strong> Supervisor</br>
 +
<strong>Interests:</strong> Busketball</br>
 +
<strong>Self-description:</strong> A postgraduate student take in charge of our team as a consultant.</p>
 +
 
 +
<div class="clear"></div>
 +
</div>
 +
 
 +
<div class="bio" id="YCbio">
 +
<h1><img src="https://static.igem.org/mediawiki/2011/0/09/TJU-Team-Title-YC.png"></h1>
 +
<p>
 +
<div align="left"><img src="https://static.igem.org/mediawiki/2011/7/75/TJU-Team-Photo-YC.jpg"></div>
 +
<strong>Birthday:</strong> </br>
 +
<strong>Hometown:</strong> </br>
 +
<strong>Discipline:</strong> Bio-engineering</br>
 +
<strong>Role:</strong> Supervisor</br>
 +
<strong>Interests:</strong> </br>
 +
<strong>Self-description:</strong> </p>
<div class="clear"></div>
<div class="clear"></div>
Line 475: Line 632:
<div class="bio" id="BZbio">
<div class="bio" id="BZbio">
-
<h1>Boxuan Zeng</h1>
+
<h1><img src="https://static.igem.org/mediawiki/2011/c/c4/TJU-Team-Title-BZ.png"></h1>
 +
<p>
 +
<div align="left"><img src="https://static.igem.org/mediawiki/2011/7/77/TJU-Team-Photo-BZ.jpg"></div>
 +
<strong>Birthday:</strong> </br>
 +
<strong>Hometown:</strong> Tianjin, P.R.China</br>
 +
<strong>Discipline:</strong> Bio-engineering</br>
 +
<strong>Role:</strong> </br>
 +
<strong>Interests:</strong> </br>
 +
<strong>Self-description:</strong> </p>
<div class="clear"></div>
<div class="clear"></div>
Line 481: Line 646:
<div class="bio" id="SXbio">
<div class="bio" id="SXbio">
-
<h1>Saisi Xue</h1>
+
<h1><img src="https://static.igem.org/mediawiki/2011/b/bc/TJU-Team-Title-SX.png"></h1>
-
<p>Birthday: Jun. 30th, 1989</br>
+
<p>
-
Hometown: Dongying, Shandong Province, P.R.China</br>
+
<div align="left"><img src="https://static.igem.org/mediawiki/2011/2/20/TJU-Team-Photo-SX.jpg"></div>
-
Discipline: Bio-engineering</br>
+
<strong>Birthday:</strong> Jun. 30th, 1989</br>
-
Role: Experiment Design, Wiki writing, Protein simulation, Presentation
+
<strong>Hometown:</strong> Dongying, Shandong Province, P.R.China</br>
-
Interests: Piano, Chorus, Badminton, Animation, Taekwondo </br>
+
<strong>Discipline:</strong> Bio-engineering</br>
-
Self-description: A Super girl seeking truth from facts! iGEM is an peerless stage for anyone to stand out and show his talent, fabulous project and fantastic imagination. We are going to change what we can change to the world, to make it more peaceful and prosperous. We are going to bring what we can bring into the game, like our undergraduates' enthusiasm and creativity. Come on and join us! And we are also coming up to U~!</p>
+
<strong>Role:</strong> Experiment Design, BioBrick Characterization, Wiki and project description, Presentation, Fund Application</br>
 +
<strong>Interests:</strong> Piano, Chorus, Badminton, Animation, Taekwondo </br>
 +
<strong>Self-description:</strong> A Super girl seeking truth from facts! iGEM is an peerless stage for anyone to stand out and show his talent, fabulous project and fantastic imagination. We are going to change what we can change to the world, to make it more peaceful and prosperous. We are going to bring what we can bring into the game, like our undergraduates' enthusiasm and creativity. Come on and join us! And we are also coming up to U~!</p>
Line 494: Line 661:
<div class="bio" id="MZbio">
<div class="bio" id="MZbio">
-
<h1>Mingrui Zhao</h1>
+
<h1><img src="https://static.igem.org/mediawiki/2011/3/39/TJU-Team-Title-MZ.png"></h1>
 +
<p>
 +
<div align="left"><img src="https://static.igem.org/mediawiki/2011/c/cd/TJU-Team-Photo-MZ.jpg"></div>
 +
<strong>Birthday:</strong> Jul. 24th, 1990</br>
 +
<strong>Hometown:</strong> Shandong Province, P.R.China</br>
 +
<strong>Discipline:</strong> Bio-engineering</br>
 +
<strong>Role:</strong> Experimen, Note</br>
 +
<strong>Interests:</strong> Music and all kinds of instruments </br>
 +
<strong>Self-description:</strong> In my opinion, synthetic biology is a different and magical field of science. It looks like mysterious at the first glance. But everything has changed as time goes by. As a member of IGEM working on our project for half a year, I have deeply understandings on it. Perhaps it will become an important memory during my undergraduate, an unforgettable experience that I devote my time, passion and intelligence to. I always wish I can search the future and through IGEM, I think I’ve done it.</p>
<div class="clear"></div>
<div class="clear"></div>
Line 500: Line 675:
<div class="bio" id="JGbio">
<div class="bio" id="JGbio">
-
<h1>Jing Guo</h1>
+
<h1><img src="https://static.igem.org/mediawiki/2011/7/77/TJU-Team-Title-JG.png"></h1>
 +
<p>
 +
<div align="left"><img src="https://static.igem.org/mediawiki/2011/0/0f/TJU-Team-Photo-JG.jpg"></div>
 +
<strong>Birthday:</strong> Jan. 17th, 1990</br>
 +
<strong>Hometown:</strong> Henan Province, P.R.China</br>
 +
<strong>Discipline:</strong> Bio-engineering</br>
 +
<strong>Role:</strong> Experiment, Modeling</br>
 +
<strong>Interests:</strong> Table Tennis, Basketball, Reading </br>
 +
<strong>Self-description:</strong> I think synthetic biology and system biology will be the future of chemical engineering. And I think we should explore the area of synthetic biology with “conception”. In this year’s project, what we focus on is about the industrial process and I think it’s very real, practical and impressive. At the beginning of this year’s project, I’m sure that what we are going to do will bring profit and outstanding result. I love iGEM and synthetic biology and system biology.</p>
<div class="clear"></div>
<div class="clear"></div>
Line 506: Line 689:
<div class="bio" id="WKbio">
<div class="bio" id="WKbio">
-
<h1>Wenbin Kuang</h1>
+
<h1><img src="https://static.igem.org/mediawiki/2011/a/a8/TJU-Team-Title-WK.png"></h1>
-
<p>Birthday: Dec. 1st, 1989</br>
+
<p>
-
Hometown: Hunan Province, P.R.China</br>
+
<div align="left"><img src="https://static.igem.org/mediawiki/2011/d/de/TJU-Team-Photo-WK.jpg" width=480px></div>
-
Discipline: Bio-engineering</br>
+
<strong>Birthday:</strong> Dec. 1st, 1989</br>
-
Role: One of the main experimenters
+
<strong>Hometown:</strong> Hunan Province, P.R.China</br>
-
Interests: Playing basketball and tennis, drawing, reading, searching on the Internet, listening some classical songs and so on</br>
+
<strong>Discipline:</strong> Bio-engineering</br>
-
Self-description:  I’m a clever and vivacious boy. Humor and laughter are particularly essential in my life. I love anything looks pretty and charming, such as the sunrise when I stand on top of a mountain, seeing the sun rising from the horizon slowly. To find the beauty in every detail is to embellish the life with whole passion, which is my favorite world.</p>
+
<strong>Role:</strong> Experiment</br>
 +
<strong>Interests:</strong> Playing basketball and tennis, drawing, reading, searching on the Internet, listening some classical songs and so on</br>
 +
<strong>Self-description:</strong> I’m a clever and vivacious boy. Humor and laughter are particularly essential in my life. I love anything looks pretty and charming, such as the sunrise when I stand on top of a mountain, seeing the sun rising from the horizon slowly. To find the beauty in every detail is to embellish the life with whole passion, which is my favorite world.</p>
<div class="clear"></div>
<div class="clear"></div>
Line 518: Line 703:
<div class="bio" id="YRbio">
<div class="bio" id="YRbio">
-
<h1>Yunfei Ran</h1>
+
<h1><img src="https://static.igem.org/mediawiki/2011/2/20/TJU-Team-Title-YR.png"></h1>
 +
<p>
 +
<div align="left"><img src="https://static.igem.org/mediawiki/2011/4/4e/TJU-Team-Photo-YR.jpg"></div>
 +
<strong>Birthday:</strong>Oct. 22th, 1990 </br>
 +
<strong>Hometown:</strong>Hubei province,P.R.China</br>
 +
<strong>Discipline:</strong> Bio-engineering</br>
 +
<strong>Role:</strong> Wiki Programming</br>
 +
<strong>Interests:</strong>Playing table-tennis and computer games such as DOTA. </br>
 +
<strong>Self-description:</strong>I like things which are funny and innovative,and that's why I joined iGEM.Sometimes can be very persistent on thins.Biology is my favourite subject,and I have a dream that my country's Bio-economy can reach as USA's height.Believe that I can reach it if working hard. </p>
<div class="clear"></div>
<div class="clear"></div>
Line 524: Line 717:
<div class="bio" id="AWbio">
<div class="bio" id="AWbio">
-
<h1>Andi Wangzhou</h1>
+
<h1><img src="https://static.igem.org/mediawiki/2011/5/5b/TJU-Team-Title-AW.png"></h1>
-
<p>Birthday: Mar. 12th, 1994</br>
+
<p>
-
Hometown: Beijing, P.R.China</br>
+
<div align="left"><img src="https://static.igem.org/mediawiki/2011/3/3d/TJU-Team-Photo-AW.jpg"></div>
-
Discipline: Bio-engineering</br>
+
<strong>Birthday:</strong> Mar. 12th, 1994</br>
-
Role: Wiki art design, PowerPoint art design, Poster art design, Participate in experiment
+
<strong>Hometown:</strong> Beijing, P.R.China</br>
-
Interests: Piano, Table-Tennis, Tennis, SF Movie, All kinds of Music, Animation, Manga, Painting, Roller-Skating, Skiing, Photoshop </br>
+
<strong>Discipline:</strong> Bio-engineering</br>
-
Self-description: I'm the youngest member of the team, and maybe the youngest one in my grade. So, I don't have many knowledge in the experiment part. But I have a lot in the art design part. And for I'm younger, I got more time to learn! This is the first year I participate in this igem team, and there are really little I can help. So, I hope to do more for this team next year.</p>
+
<strong>Role:</strong> Wiki design, PowerPoint art design, Poster art design, Participate in experiment</br>
 +
<strong>Interests:</strong> Piano, Table-Tennis, Tennis, SF Movie, All kinds of Music, Animation, Manga, Painting, Roller-Skating, Skiing, Photoshop, DotA.</br>
 +
<strong>Self-description:</strong> I'm the youngest member of the team, and maybe the youngest one in my grade. So, I don't have many knowledge in the experiment part. But I have a lot in the art design part. And for I'm younger, I got more time to learn! This is the first year I participate in this igem team, and there are really little I can help. So, I hope to do more for this team next year.</p>
<div class="clear"></div>
<div class="clear"></div>
Line 536: Line 731:
<div class="bio" id="QWbio">
<div class="bio" id="QWbio">
-
<h1>Qinfeng Wu</h1>
+
<h1><img src="https://static.igem.org/mediawiki/2011/b/b3/TJU-Team-Title-QW.png"></h1>
 +
<p>
 +
<div align="left"><img src="https://static.igem.org/mediawiki/2011/b/b3/TJU-Team-Photo-QW.jpg"></div>
 +
<strong>Birthday:</strong> Sept. 12th, 1990</br>
 +
<strong>Hometown:</strong> Chongqing, P.R.China</br>
 +
<strong>Discipline:</strong> Chemical Engineering</br>
 +
<strong>Role:</strong> Presentation</br>
 +
<strong>Interests:</strong> Jogging, Swimming, Language</br>
 +
<strong>Self-description:</strong> Since the emergence of genetically engineered biology, the world has been realizing its significance day by day; and I developed interests in the field since my college years. Our team, dedicated to the better utilization of iGEM, offered me a place to use what I learn and contribute to what I cared. Our project concentrates on the vital procedure of fermentation, and our technology will lead to the optimization of the whole industry. I am confident in our career and hold great confidence in the development of synthetic engineering. This new technology of chemical engineering will definitely reshape the world. </p>
<div class="clear"></div>
<div class="clear"></div>
Line 542: Line 745:
<div class="bio" id="HRbio">
<div class="bio" id="HRbio">
-
<h1>Hengqian Ren</h1>
+
<h1><img src="https://static.igem.org/mediawiki/2011/a/a4/TJU-Team-Title-HR.png"></h1>
-
<p>Birthday: Sept. 30,1990</br>
+
<p>
-
Hometown:Tianjin, P.R.China</br>
+
<div align="left"><ing src="https://static.igem.org/mediawiki/2011/7/79/TJU-Team-Photo-HR.jpg"></div>
-
Discipline: Chemical engineering grade 2</br>
+
<strong>Birthday:</strong> Sept. 30,1990</br>
-
Interests: Table tennis</br>
+
<strong>Hometown:</strong> Tianjin, P.R.China</br>
-
Self-description: A boy with innocent curiosity to the nature and universe.</p>
+
<strong>Discipline:</strong> Chemical Engineering</br>
 +
<strong>Role:</strong> Experiment</br>
 +
<strong>Interests:</strong> Table tennis</br>
 +
<strong>Self-description:</strong> A boy with innocent curiosity to the nature and universe.</p>
Line 554: Line 760:
<div class="bio" id="EWbio">
<div class="bio" id="EWbio">
-
<h1>Enxu Wang</h1>
+
<h1><img src="https://static.igem.org/mediawiki/2011/7/7a/TJU-Team-Title-EW.png"></h1>
 +
<p>
 +
<div align="left"><img src="https://static.igem.org/mediawiki/2011/8/84/TJU-Team-Photo-EW.jpg"></div>
 +
<strong>Birthday:</strong> </br>
 +
<strong>Hometown:</strong> </br>
 +
<strong>Discipline:</strong> Bio-engineering</br>
 +
<strong>Role:</strong> Experiment</br>
 +
<strong>Interests:</strong> </br>
 +
<strong>Self-description:</strong> </p>
<div class="clear"></div>
<div class="clear"></div>
Line 560: Line 774:
<div class="bio" id="LCbio">
<div class="bio" id="LCbio">
-
<h1>Long Chen</h1>
+
<h1><img src="https://static.igem.org/mediawiki/2011/4/43/TJU-Team-Title-LC.png"></h1>
 +
<p>
 +
<div align="left"><img src="https://static.igem.org/mediawiki/2011/d/d7/TJU-Team-Photo-LC.jpg"></div>
 +
<strong>Birthday:</strong> </br>
 +
<strong>Hometown:</strong> </br>
 +
<strong>Discipline:</strong> Bio-engineering</br>
 +
<strong>Role:</strong> Experiment</br>
 +
<strong>Interests:</strong> </br>
 +
<strong>Self-description:</strong> </p>
<div class="clear"></div>
<div class="clear"></div>
</div>
</div>
-
<div class="bio" id="JLbio">
+
<div class="bio" id="DTbio">
-
<h1>Jingrui Li</h1>
+
<h1><img src="https://static.igem.org/mediawiki/2011/a/ac/TJU-Team-Title-DT.png"></h1>
 +
<p>
 +
<div align="left"><img src=" "></div>
 +
<strong>Birthday:</strong> </br>
 +
<strong>Hometown:</strong> </br>
 +
<strong>Discipline:</strong> Software Engineering</br>
 +
<strong>Role:</strong> Wiki Programming</br>
 +
<strong>Interests:</strong> </br>
 +
<strong>Self-description:</strong> </p>
-
<div class="clear"></div></div>
+
<div class="clear"></div>
</div>
</div>
-
<div id="content_2">
 
-
<h1>Our team members<span>with teachers</span></h1>
 
-
<div class="description">Click on the thumbs or the large image</div>
 
-
<div id="im_wrapper" class="im_wrapper">
 
-
<div style="background-position:-80px 80px"><img src="" alt="teammember-1" /></div>
 
-
<div style="background-position:-160px 80px"><img src="" alt="teammember-2" /></div>
 
-
<div style="background-position:-240px 80px"><img src="" alt="teammember-3" /></div>
 
-
<div style="background-position:-320px 80px"><img src="" alt="teammember-4" /></div>
 
-
<div style="background-position:-400px 80px"><img src="" alt="teammember-5" /></div>
 
-
<div style="background-position:-480px 80px"><img src="" alt="teammember-6" /></div>
 
-
<div style="background-position:center"><img src="" alt="teammember-7" /></div>
 
-
<div style="background-position:center"><img src="" alt="teammember-8" /></div>
 
-
<div style="background-position:center"><img src="" alt="teammember-9" /></div>
 
-
<div style="background-position:center"><img src="" alt="teammember-10" /></div>
 
-
<div style="background-position:center"><img src="" alt="teammember-11" /></div>
 
-
<div style="background-position:center"><img src="" alt="teammember-12" /></div>
 
-
 
-
<div style="background-position:center"><img src="" alt="teammember-13" /></div>
 
-
<div style="background-position:center"><img src="" alt="teammember-14" /></div>
 
-
<div style="background-position:center"><img src="" alt="teammember-15" /></div>
 
-
<div style="background-position:center"><img src="" alt="teammember-16" /></div>
 
-
<div style="background-position:center"><img src="" alt="teammember-17" /></div>
 
-
<div style="background-position:center"><img src="" alt="teammember-18" /></div>
 
-
 
-
<div style="background-position:center"><img src="" alt="teammember-19" /></div>
 
-
<div style="background-position:center"><img src="" alt="teammember-20" /></div>
 
-
<div style="background-position:center"><img src="" alt="teammember-21" /></div>
 
-
<div style="background-position:center"><img src="" alt="teammember-22" /></div>
 
-
<div style="background-position:center"><img src="" alt="teammember-23" /></div>
 
-
<div style="background-position:center"><img src="" alt="teammember-24" /></div>
 
-
</div>
 
-
<div id="im_loading" class="im_loading"></div>
 
-
<div id="im_next" class="im_next"></div>
 
-
<div id="im_prev" class="im_prev"></div>
 
</div>
</div>
 +
    <div id="BackToTop">
 +
            <a href="#top"><img src="https://static.igem.org/mediawiki/2011/2/28/TJU-Team-BackToTop.png">
 +
        </div>
</div>
</div>
</div>
</div>

Latest revision as of 19:41, 4 October 2011

Template:Https://2011.igem.org/Team:Peking S/bannerhidden Template:Https://2011.igem.org/Team:Peking S/back2

Untitled

Description:

Description:

Birthday: Oct. 28th, 1988
Hometown: Shanxi Province, P.R.China
Discipline: Bio-engineering
Role: Supervisor
Interests: Busketball
Self-description: A postgraduate student take in charge of our team as a consultant.

Birthday:
Hometown:
Discipline: Bio-engineering
Role: Supervisor
Interests:
Self-description:

Birthday:
Hometown: Tianjin, P.R.China
Discipline: Bio-engineering
Role:
Interests:
Self-description:

Birthday: Jun. 30th, 1989
Hometown: Dongying, Shandong Province, P.R.China
Discipline: Bio-engineering
Role: Experiment Design, BioBrick Characterization, Wiki and project description, Presentation, Fund Application
Interests: Piano, Chorus, Badminton, Animation, Taekwondo
Self-description: A Super girl seeking truth from facts! iGEM is an peerless stage for anyone to stand out and show his talent, fabulous project and fantastic imagination. We are going to change what we can change to the world, to make it more peaceful and prosperous. We are going to bring what we can bring into the game, like our undergraduates' enthusiasm and creativity. Come on and join us! And we are also coming up to U~!

Birthday: Jul. 24th, 1990
Hometown: Shandong Province, P.R.China
Discipline: Bio-engineering
Role: Experimen, Note
Interests: Music and all kinds of instruments
Self-description: In my opinion, synthetic biology is a different and magical field of science. It looks like mysterious at the first glance. But everything has changed as time goes by. As a member of IGEM working on our project for half a year, I have deeply understandings on it. Perhaps it will become an important memory during my undergraduate, an unforgettable experience that I devote my time, passion and intelligence to. I always wish I can search the future and through IGEM, I think I’ve done it.

Birthday: Jan. 17th, 1990
Hometown: Henan Province, P.R.China
Discipline: Bio-engineering
Role: Experiment, Modeling
Interests: Table Tennis, Basketball, Reading
Self-description: I think synthetic biology and system biology will be the future of chemical engineering. And I think we should explore the area of synthetic biology with “conception”. In this year’s project, what we focus on is about the industrial process and I think it’s very real, practical and impressive. At the beginning of this year’s project, I’m sure that what we are going to do will bring profit and outstanding result. I love iGEM and synthetic biology and system biology.

Birthday: Dec. 1st, 1989
Hometown: Hunan Province, P.R.China
Discipline: Bio-engineering
Role: Experiment
Interests: Playing basketball and tennis, drawing, reading, searching on the Internet, listening some classical songs and so on
Self-description: I’m a clever and vivacious boy. Humor and laughter are particularly essential in my life. I love anything looks pretty and charming, such as the sunrise when I stand on top of a mountain, seeing the sun rising from the horizon slowly. To find the beauty in every detail is to embellish the life with whole passion, which is my favorite world.

Birthday:Oct. 22th, 1990
Hometown:Hubei province,P.R.China
Discipline: Bio-engineering
Role: Wiki Programming
Interests:Playing table-tennis and computer games such as DOTA.
Self-description:I like things which are funny and innovative,and that's why I joined iGEM.Sometimes can be very persistent on thins.Biology is my favourite subject,and I have a dream that my country's Bio-economy can reach as USA's height.Believe that I can reach it if working hard.

Birthday: Mar. 12th, 1994
Hometown: Beijing, P.R.China
Discipline: Bio-engineering
Role: Wiki design, PowerPoint art design, Poster art design, Participate in experiment
Interests: Piano, Table-Tennis, Tennis, SF Movie, All kinds of Music, Animation, Manga, Painting, Roller-Skating, Skiing, Photoshop, DotA.
Self-description: I'm the youngest member of the team, and maybe the youngest one in my grade. So, I don't have many knowledge in the experiment part. But I have a lot in the art design part. And for I'm younger, I got more time to learn! This is the first year I participate in this igem team, and there are really little I can help. So, I hope to do more for this team next year.

Birthday: Sept. 12th, 1990
Hometown: Chongqing, P.R.China
Discipline: Chemical Engineering
Role: Presentation
Interests: Jogging, Swimming, Language
Self-description: Since the emergence of genetically engineered biology, the world has been realizing its significance day by day; and I developed interests in the field since my college years. Our team, dedicated to the better utilization of iGEM, offered me a place to use what I learn and contribute to what I cared. Our project concentrates on the vital procedure of fermentation, and our technology will lead to the optimization of the whole industry. I am confident in our career and hold great confidence in the development of synthetic engineering. This new technology of chemical engineering will definitely reshape the world.

Birthday: Sept. 30,1990
Hometown: Tianjin, P.R.China
Discipline: Chemical Engineering
Role: Experiment
Interests: Table tennis
Self-description: A boy with innocent curiosity to the nature and universe.

Birthday:
Hometown:
Discipline: Bio-engineering
Role: Experiment
Interests:
Self-description:

Birthday:
Hometown:
Discipline: Bio-engineering
Role: Experiment
Interests:
Self-description:

Birthday:
Hometown:
Discipline: Software Engineering
Role: Wiki Programming
Interests:
Self-description: