Difference between revisions of "Team:GZHS-United/Collaborations"

 
(9 intermediate revisions by one other user not shown)
Line 2: Line 2:
 
<html>
 
<html>
 
<head>
 
<head>
<title>Attribution</title>
+
<title>Collaborations</title>
 
<link href="https://2017.igem.org/Team:GZHS-United/CSS/bootstrapmin?action=raw&ctype=text/css" rel="stylesheet" type="text/css"/>
 
<link href="https://2017.igem.org/Team:GZHS-United/CSS/bootstrapmin?action=raw&ctype=text/css" rel="stylesheet" type="text/css"/>
 
<script type="text/javascript" src="https://2017.igem.org/Team:GZHS-United/JS/jquerymin?action=raw&ctype=text/javascript"></script>
 
<script type="text/javascript" src="https://2017.igem.org/Team:GZHS-United/JS/jquerymin?action=raw&ctype=text/javascript"></script>
Line 8: Line 8:
 
<link href="https://2017.igem.org/Team:GZHS-United/CSS/common?action=raw&ctype=text/css" rel="stylesheet" type="text/css"/>
 
<link href="https://2017.igem.org/Team:GZHS-United/CSS/common?action=raw&ctype=text/css" rel="stylesheet" type="text/css"/>
 
</head>
 
</head>
 +
<style>
 +
#GZHS_content .imgs{
 +
width:100%;
 +
text-align:center;
 +
padding-bottom:50px;
 +
}
 +
#GZHS_content .img100{
 +
width:100%;
 +
}
 +
#GZHS_content .img60{
 +
width:60%;
 +
}
 +
</style>
 
<body>
 
<body>
 
<div class="header-banner" id="head">
 
<div class="header-banner" id="head">
Line 65: Line 78:
 
</li>
 
</li>
 
<li role="presentation">
 
<li role="presentation">
<a role="menuitem" tabindex="-1" href="#">Contribution</a>
+
<a role="menuitem" tabindex="-1" href="https://2017.igem.org/Team:GZHS-United/Contribution">Contribution</a>
 
</li>
 
</li>
 
</ul>
 
</ul>
Line 84: Line 97:
 
</a>
 
</a>
 
<ul class="dropdown-menu dropdown_menu" role="menu" aria-labelledby="dropdownMenu5">
 
<ul class="dropdown-menu dropdown_menu" role="menu" aria-labelledby="dropdownMenu5">
 +
<li role="presentation">
 +
<a role="menuitem" tabindex="-1" href="https://2017.igem.org/Team:GZHS-United/Notebook">Notebook</a>
 +
</li>
 
<li role="presentation">
 
<li role="presentation">
 
<a role="menuitem" tabindex="-1" href="https://2017.igem.org/Team:GZHS-United/Gallery">Gallery</a>
 
<a role="menuitem" tabindex="-1" href="https://2017.igem.org/Team:GZHS-United/Gallery">Gallery</a>
Line 136: Line 152:
 
<div class="row" style="padding:60px 0;">
 
<div class="row" style="padding:60px 0;">
 
<h1>Cooperation</h1>
 
<h1>Cooperation</h1>
<p>Lucky, we have found a reliable partner, team RDFZ-CHINA. When we met some problems when processing our project, we received essential assistance from them. In return, we helped them to make a significant model. Furthermore, we attained the meet-up organized by SIAT-SCIE and had a great time together ; )</p>  
+
<p>Luckily, we have found a reliable partner, team RDFZ-CHINA. When we met some problems when processing our project, we received essential assistance from them. In return, we helped them to make a significant model. Furthermore, we attained the meet-up organized by SIAT-SCIE and had a great time together ; )</p>  
<img src="https://static.igem.org/mediawiki/2017/e/e8/T--GZHS-United--collaborations.png">
+
<div class="imgs">
 +
<img src="https://static.igem.org/mediawiki/2017/e/e8/T--GZHS-United--collaborations.png" class="img100">
 +
</div>
 +
<div class="imgs">
 +
<img src="https://static.igem.org/mediawiki/2017/c/cc/T--GZHS-United--collaborations2.jpg" class="img100">
 +
</div>
 +
<div class="imgs">
 +
<img src="https://static.igem.org/mediawiki/2017/6/6a/T--GZHS-United--collaborations3.jpg" class="img100">
 +
</div>
 +
<h2>Team: CIEI-BJ</h2>
 +
<p>We helped them with testing repellent efficiency of different concentration.</p>
 +
 
 +
<div class="imgs">
 +
<img src="https://static.igem.org/mediawiki/2017/5/52/T--GZHS-United--collaborations4.jpg" class="img60">
 +
</div>
 +
<div class="imgs">
 +
<img src="https://static.igem.org/mediawiki/2017/4/4a/T--GZHS-United--collaborations5.jpg" class="img60">
 +
</div>
 
</div>
 
</div>
 
</div>
 
</div>
 
</div>
 
</div>
 
</body>
 
</body>
 +
<div id="to_top">
 +
<img src="https://static.igem.org/mediawiki/2017/9/97/T--GZHS-United--toTop_buttom.png" onClick="toTop()"/>
 +
</div>
 +
<div id="last_page">
 +
<a href="https://2017.igem.org/Team:GZHS-United/Collaborations"><img src="https://static.igem.org/mediawiki/2017/8/8d/T--GZHS-United--left_buttom.png
 +
"/></a>
 +
</div>
 
<script>
 
<script>
 
$(document).ready(function(){
 
$(document).ready(function(){
Line 154: Line 194:
 
}
 
}
 
});
 
});
 +
 +
var timer = null;
 +
function toTop(){
 +
cancelAnimationFrame(timer);
 +
timer = requestAnimationFrame(function fn(){
 +
var oTop = document.body.scrollTop || document.documentElement.scrollTop;
 +
if(oTop > 0){
 +
document.body.scrollTop = document.documentElement.scrollTop = oTop - 50;
 +
timer = requestAnimationFrame(fn);
 +
}else{
 +
cancelAnimationFrame(timer);
 +
}
 +
});
 +
}
 
</script>
 
</script>
 
</html>
 
</html>

Latest revision as of 02:21, 2 November 2017

Collaborations

Cooperation

Luckily, we have found a reliable partner, team RDFZ-CHINA. When we met some problems when processing our project, we received essential assistance from them. In return, we helped them to make a significant model. Furthermore, we attained the meet-up organized by SIAT-SCIE and had a great time together ; )

Team: CIEI-BJ

We helped them with testing repellent efficiency of different concentration.