Difference between revisions of "NJU-China-team.html"

 
(26 intermediate revisions by the same user not shown)
Line 6: Line 6:
 
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0" name="viewport">
 
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0" name="viewport">
 
<!-- Use title if it's in the page YAML frontmatter -->
 
<!-- Use title if it's in the page YAML frontmatter -->
<title>team</title>
+
<title>humanpractice</title>
 +
 
  
 
<meta content="#ffffff" name="msapplication-TileColor">
 
<meta content="#ffffff" name="msapplication-TileColor">
Line 125: Line 126:
 
}
 
}
 
</style>
 
</style>
 +
  
 
<style type="text/css">  
 
<style type="text/css">  
Line 136: Line 138:
 
</style>  
 
</style>  
  
<script type="text/javascript">
+
 
DOMhelp={
+
debugWindowId:'DOMhelpdebug',
+
init:function(){
+
if(!document.getElementById || !document.createTextNode){return;}
+
},
+
lastSibling:function(node){
+
var tempObj=node.parentNode.lastChild;
+
while(tempObj.nodeType!=1 && tempObj.previousSibling!=null){
+
tempObj=tempObj.previousSibling;
+
}
+
return (tempObj.nodeType==1)?tempObj:false;
+
},
+
firstSibling:function(node){
+
var tempObj=node.parentNode.firstChild;
+
while(tempObj.nodeType!=1 && tempObj.nextSibling!=null){
+
tempObj=tempObj.nextSibling;
+
}
+
return (tempObj.nodeType==1)?tempObj:false;
+
},
+
getText:function(node){
+
if(!node.hasChildNodes()){return false;}
+
var reg=/^\s+$/;
+
var tempObj=node.firstChild;
+
while(tempObj.nodeType!=3 && tempObj.nextSibling!=null || reg.test(tempObj.nodeValue)){
+
tempObj=tempObj.nextSibling;
+
}
+
return tempObj.nodeType==3?tempObj.nodeValue:false;
+
},
+
setText:function(node,txt){
+
if(!node.hasChildNodes()){return false;}
+
var reg=/^\s+$/;
+
var tempObj=node.firstChild;
+
while(tempObj.nodeType!=3 && tempObj.nextSibling!=null || reg.test(tempObj.nodeValue)){
+
tempObj=tempObj.nextSibling;
+
}
+
if(tempObj.nodeType==3){tempObj.nodeValue=txt}else{return false;}
+
},
+
createLink:function(to,txt){
+
var tempObj=document.createElement('a');
+
tempObj.appendChild(document.createTextNode(txt));
+
tempObj.setAttribute('href',to);
+
return tempObj;
+
},
+
createTextElm:function(elm,txt){
+
var tempObj=document.createElement(elm);
+
tempObj.appendChild(document.createTextNode(txt));
+
return tempObj;
+
},
+
closestSibling:function(node,direction){
+
var tempObj;
+
if(direction==-1 && node.previousSibling!=null){
+
tempObj=node.previousSibling;
+
while(tempObj.nodeType!=1 && tempObj.previousSibling!=null){
+
tempObj=tempObj.previousSibling;
+
}
+
}else if(direction==1 && node.nextSibling!=null){
+
tempObj=node.nextSibling;
+
while(tempObj.nodeType!=1 && tempObj.nextSibling!=null){
+
tempObj=tempObj.nextSibling;
+
}
+
}
+
return tempObj.nodeType==1?tempObj:false;
+
},
+
initDebug:function(){
+
if(DOMhelp.debug){DOMhelp.stopDebug();}
+
DOMhelp.debug=document.createElement('div');
+
DOMhelp.debug.setAttribute('id',DOMhelp.debugWindowId);
+
document.body.insertBefore(DOMhelp.debug,document.body.firstChild);
+
},
+
setDebug:function(bug){
+
if(!DOMhelp.debug){DOMhelp.initDebug();}
+
DOMhelp.debug.innerHTML+=bug+'\n';
+
},
+
stopDebug:function(){
+
if(DOMhelp.debug){
+
DOMhelp.debug.parentNode.removeChild(DOMhelp.debug);
+
DOMhelp.debug=null;
+
}
+
},
+
getKey:function(e){
+
if(window.event){
+
      var key = window.event.keyCode;
+
    } else if(e){
+
      var key=e.keyCode;
+
    }
+
return key;
+
},
+
/* helper methods */
+
getTarget:function(e){
+
var target = window.event ? window.event.srcElement : e ? e.target : null;
+
if (!target){return false;}
+
while(target.nodeType!=1 && target.nodeName.toLowerCase()!='body'){
+
target=target.parentNode;
+
}
+
return target;
+
},
+
stopBubble:function(e){
+
if(window.event && window.event.cancelBubble){
+
window.event.cancelBubble = true;
+
}
+
if (e && e.stopPropagation){
+
e.stopPropagation();
+
}
+
},
+
stopDefault:function(e){
+
if(window.event && window.event.returnValue){
+
window.event.returnValue = false;
+
}
+
if (e && e.preventDefault){
+
e.preventDefault();
+
}
+
},
+
cancelClick:function(e){
+
if (window.event){
+
window.event.cancelBubble = true;
+
window.event.returnValue = false;
+
}
+
if (e && e.stopPropagation && e.preventDefault){
+
e.stopPropagation();
+
e.preventDefault();
+
}
+
},
+
addEvent: function(elm, evType, fn, useCapture){
+
if (elm.addEventListener){
+
elm.addEventListener(evType, fn, useCapture);
+
return true;
+
} else if (elm.attachEvent) {
+
var r = elm.attachEvent('on' + evType, fn);
+
return r;
+
} else {
+
elm['on' + evType] = fn;
+
}
+
},
+
cssjs:function(a,o,c1,c2){
+
switch (a){
+
case 'swap':
+
o.className=!DOMhelp.cssjs('check',o,c1)?o.className.replace(c2,c1):o.className.replace(c1,c2);
+
break;
+
case 'add':
+
if(!DOMhelp.cssjs('check',o,c1)){o.className+=o.className?' '+c1:c1;}
+
break;
+
case 'remove':
+
var rep=o.className.match(' '+c1)?' '+c1:c1;
+
o.className=o.className.replace(rep,'');
+
break;
+
case 'check':
+
var found=false;
+
var temparray=o.className.split(' ');
+
for(var i=0;i<temparray.length;i++){
+
if(temparray[i]==c1){found=true;}
+
}
+
return found;
+
break;
+
}
+
},
+
    safariClickFix:function(){
+
      return false;
+
    }
+
}
+
DOMhelp.addEvent(window, 'load', DOMhelp.init, false);
+
</script>
+
<script type="text/javascript">
+
<!--
+
sn={
+
    dynamicClass:'dyn',
+
    showClass:'show',
+
    parentClass:'parent',
+
    openClass:'open',
+
    navID:'nav',
+
    init:function(){
+
        var triggerLink;
+
        if(!document.getElementById || !document.createTextNode){return;}
+
        var nav=document.getElementById(sn.navID);
+
        if(!nav){return;}
+
        DOMhelp.cssjs('add',nav,sn.dynamicClass);       
+
        var nested=nav.getElementsByTagName('ul');
+
        for(var i=0;i<nested.length;i++){
+
            triggerLink=nested[i].parentNode.getElementsByTagName('a')[0];
+
            DOMhelp.cssjs('add',triggerLink.parentNode,sn.parentClass);       
+
            DOMhelp.addEvent(triggerLink,'click',sn.changeSection,false);
+
            triggerLink.onclick=DOMhelp.safariClickFix;
+
            if(nested[i].parentNode.getElementsByTagName('strong').length>0){
+
                DOMhelp.cssjs('add',triggerLink.parentNode,sn.openClass);       
+
                DOMhelp.cssjs('add',nested[i],sn.showClass);
+
            }
+
        }
+
    },
+
    changeSection:function(e){
+
        var t=DOMhelp.getTarget(e);
+
        var firstList=t.parentNode.getElementsByTagName('ul')[0];
+
        if(DOMhelp.cssjs('check',firstList,sn.showClass)){
+
            DOMhelp.cssjs('remove',firstList,sn.showClass)
+
            DOMhelp.cssjs('swap',t.parentNode,sn.openClass,sn.parentClass);
+
        } else {
+
            DOMhelp.cssjs('add',firstList,sn.showClass)
+
            DOMhelp.cssjs('swap',t.parentNode,sn.openClass,sn.parentClass);
+
        }
+
        DOMhelp.cancelClick(e);
+
    }
+
}
+
DOMhelp.addEvent(window,'load',sn.init,false);
+
-->
+
</script>
+
 
</head>
 
</head>
  
 
<body class="index" data-view="index" style="">
 
<body class="index" data-view="index" style="">
 
<div class="content">
 
<div class="content">
<nav>
+
<nav style="height:80px">
<ul>
+
<ul style="margin-top:10px">
 
<li><a class="button" href="#detail" style="font-weight:bold;font-family:Microsoft YaHei">content</a></li>
 
<li><a class="button" href="#detail" style="font-weight:bold;font-family:Microsoft YaHei">content</a></li>
 
</ul>
 
</ul>
Line 388: Line 187:
 
<TABLE borderColor=#00ff99 height="100%" width="100%" border=0 style="table-layout:fixed">
 
<TABLE borderColor=#00ff99 height="100%" width="100%" border=0 style="table-layout:fixed">
 
     <TR height="100%">
 
     <TR height="100%">
<TD width="27%" bgColor=#EEE8AA style="vertical-align:top">
+
<TD width="27%" bgColor=#E6E8FA style="vertical-align:top">
<ul id="nav" style="height:100px;line-height:100px;margin-top:20%;margin-left:10%;list-style-type:none" class="dyn">
+
</br>
<li><a href="https://2015.igem.org/Team:NJU-China" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Home</a></li>
+
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/Team:NJU-China" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Home</a></li>
<li><a href="https://2015.igem.org/NJU-China-background.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Background</a></li>
+
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-background.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Background</a></li>
<li><a href="https://2015.igem.org/NJU-China-project.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Project</a></li>
+
<div style="line-height:250%;margin-left:10%" id="main1" onClick="document.all.child0.style.display=(document.all.child0.style.display =='none')?'':'none'" ><a href="#" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Project</a></div>
<li><a href="#" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Model</a>
+
<div id="child0" style="display:none">
        <ul>  
+
<ul>
            <li><a href="https://2015.igem.org/NJU-China-model.html#deliverymodel" style="font-weight:bold;font-family:幼圆;font-size:20px;color:black">Delivery model</a></li>  
+
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/Team:NJU-China/Design" style="font-weight:bold;font-family:幼圆;color:black">design</a></li>
            <li><a href="#" style="font-weight:bold;font-family:幼圆;font-size:20px;color:black">RNAi model</a></li>  
+
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-project/result.html" style="font-weight:bold;font-family:幼圆;color:black">results</a></li>
        </ul>  
+
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-project/conclusion.html" style="font-weight:bold;font-family:幼圆;color:black">conclusion</a></li>
</li>
+
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-project/future work.html" style="font-weight:bold;font-family:幼圆;color:black">future work</a></li>
<li style="line-height:250%"><a href="https://2015.igem.org/NJU-China-human-practice.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Human Practice</a></li>
+
</ul>
<li style="line-height:250%"><a href="https://2015.igem.org/NJU-China-parts.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Parts</a></li>
+
</div>
<li style="line-height:250%"><a href="https://2015.igem.org/NJU-China-team.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Team</a></li>
+
<div style="line-height:250%;margin-left:10%" id="main1" onClick="document.all.child1.style.display=(document.all.child1.style.display =='none')?'':'none'" ><a href="#" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Model</a></div>
<li style="line-height:250%"><a href="https://2015.igem.org/NJU-China-attribution.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Attribution</a></li>
+
<div id="child1" style="display:none">
<li style="line-height:250%"><a href="https://2015.igem.org/NJU-China-colaboration.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Colaborations</a></li>
+
<ul>
<li style="line-height:250%"><a href="https://2015.igem.org/NJU-China-safty.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Safety</a></li>
+
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-model.html" style="font-weight:bold;font-family:幼圆;color:black">Delivery Module</a></li>
<li style="line-height:250%"><a href="#" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Notebook</a>
+
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/Team:NJU-China/RNAi" style="font-weight:bold;font-family:幼圆;color:black">RNAi Module</a></li>
        <ul>  
+
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/Team:NJU-China/signaling" style="font-weight:bold;font-family:幼圆;color:black">Signaling Module</a></li>
            <li><a href="https://2015.igem.org/NJU-China-notebook.html#methods" style="font-weight:bold;font-family:幼圆;font-size:20px;color:black">Methods</a></li>  
+
</ul>
            <li><a href="https://2015.igem.org/NJU-China-notebook.html#protocal" style="font-weight:bold;font-family:幼圆;font-size:20px;color:black">Protocal</a></li>  
+
</div>
            <li><a href="https://2015.igem.org/NJU-China-notebook.html#notebook" style="font-weight:bold;font-family:幼圆;font-size:20px;color:black">Notebook</a></li>  
+
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/Team:NJU-China/Practices" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Human Practice</a></li>
        </ul>  
+
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-parts.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Parts</a></li>
</li>
+
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-team.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Team</a></li>
</ul>  
+
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-attribution.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Attribution</a></li>
 
+
<li style="line-height:250%;margin-left:10%"><a href="https://static.igem.org/mediawiki/2015/d/d1/NJU-China_Parts.jpg" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Collaborations</a></li>
 +
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-safty.html" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Safety</a></li>
 +
<div style="line-height:250%;margin-left:10%" id="main2" onClick="document.all.child2.style.display=(document.all.child2.style.display =='none')?'':'none'" > <a href="#" style="font-weight:bold;font-family:幼圆;font-size:25px;color:black">Notebook </div>
 +
<div id="child2" style="display:none">
 +
<ul>
 +
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-notebook.html#methods" style="font-weight:bold;font-family:幼圆;font-size:20px;color:black">Methods</a></li>
 +
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-notebook.html#protocal" style="font-weight:bold;font-family:幼圆;font-size:20px;color:black">Protocal</a></li>
 +
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-notebook.html#notebook" style="font-weight:bold;font-family:幼圆;font-size:20px;color:black">Notebook</a></li>
 +
</ul>
 +
</div>
 +
<li style="line-height:250%;margin-left:10%"><a href="https://2015.igem.org/NJU-China-acknowledgement.html#notebook" style="font-weight:bold;font-family:幼圆;font-size:20px;color:black">Acknowledgement</a></li>
  
 
</TD>
 
</TD>
     <TD width="73%" bgColor=#FFFFFF style="vertical-align:top;padding-left:80px;padding-right:80px;padding-top:50px;padding-bottom:50px;word-wrap:break-word;">
+
     <TD width="73%" bgColor=#FFFFFF style="vertical-align:top;padding-left:0px;padding-right:80px;padding-top:50px;padding-bottom:50px;word-wrap:break-word;">
<img src="https://static.igem.org/mediawiki/2015/2/28/NJU-China-team-title.jpg">
+
        <div style="margin-left:0px;width:950px">
We are NJU_CHINA iGEM team. When it comes to iGEM (International Genetically Engineered Machine Competition), our team is pretty acquaint with it thanks to the experience in this competition over the last few years. Not only can this wonderful competition expand our horizons and enrich our experience but also it provides a golden chance for us to show creativity, enthusiasm and our great passion for science , so that’s why we participated in the competition again this year.
+
         <img src="https://static.igem.org/mediawiki/2015/c/c0/NJU-China-team1.jpg">
Our team was established during last winter, consisting of 20 members.
+
         <img src="https://static.igem.org/mediawiki/2015/d/da/NJU-China-team2.jpg">
         <img src="https://static.igem.org/mediawiki/2015/4/49/NJU-China-team-all.jpg">
+
         <img src="https://static.igem.org/mediawiki/2015/9/94/NJU-China-team3.jpg">
Besides, we’re divided into four subgroups, each focusing on a certain part of the project. All of us got the opportunity to experience and try something that we have never done before. Hardly can we achieve success and get good data without the team’s efforts. What’s more, thanks to the assistance of our advisor and mentor, we managed to overcome many difficulties and grew up into an excellent team.
+
         <img src="https://static.igem.org/mediawiki/2015/e/e7/NJU-China-team4.jpg">
         <img src="https://static.igem.org/mediawiki/2015/1/13/NJU-China-team-1.jpg">
+
        </div>
        </br>
+
        </br>
+
        </br>
+
         <img src="https://static.igem.org/mediawiki/2015/f/f1/NJU-Cha-team2.jpg>
+
        <img src="https://static.igem.org/mediawiki/2015/d/de/NJU-Cha-team3.jpg">
+
         <table>
+
        <tr>
+
        <td><img src="https://static.igem.org/mediawiki/2015/e/e7/NJU-China-team4.jpg">Hello, iGEMers, I am Zhou Yu, a student in Nanjing University. This is my third time to take part in iGEM. As the leader of NJU-China team, I take the responsibility for design, wetlab, human practice and everything else.
+
Working with all the other diligent team members, I have centered the laboratory in my daily life.
+
Through all efforts for iGEM, I gain more passion for synthetic biology.</td>
+
        <td><img src="
+
 
</TD>
 
</TD>
 
     </TR>
 
     </TR>

Latest revision as of 18:55, 18 September 2015

humanpractice