Difference between revisions of "Team:Lanzhou"

(Prototype team page)
 
 
(20 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Lanzhou}}
+
{{Lanzhou/Header}}
 
<html>
 
<html>
 +
<script>
 +
$('.page__header').remove();
 +
let index = [0, 0];
 +
let nav_list_item = $('.mdc-temporary-drawer__content:not(".sub-nav")').children('.mdc-list-item');
 +
$(nav_list_item[index[0]]).children('.material-icons').eq(0).addClass('mdc-list-item__start-detail-color');
 +
$(nav_list_item[index[0]]).next().find('.mdc-list-item').eq(index[1]).css('color', '#ff4081');
 +
</script>
  
 +
<main class="page__content home">
 +
 +
<div class="home__item">
 +
<canvas id="canvas-1"></canvas>
 +
<div class="home_text">
 +
<p class="mdc-typography--title">
 +
Pests and weeds are significant damages tot the crop field, which has been causing huge loss of agricultural economy.
 +
</p>
 +
<p class="mdc-typography--title">
 +
And the traditional pesticides will easily cause resistance and pollution problem...
 +
</p>
 +
<a href="https://2017.igem.org/Team:Lanzhou/Background">Go to background</a>
 +
</div>
 +
<script type="text/javascript">
 +
$(function(){
 +
let c1_WIDTH = $('#canvas-1').width()
 +
c1_HEIGHT = $('#canvas-1').height()
 +
let saw = new Image();
 +
grass = new Image();
 +
function init() {
 +
saw.src = 'https://static.igem.org/mediawiki/2017/5/5a/Lanzhou_wiki_home_saw.png';
 +
grass.src = 'https://static.igem.org/mediawiki/2017/7/73/Lanzhou_wiki_home_grass.png';
 +
 +
window.requestAnimationFrame(draw);
 +
}
 +
 +
let is_saw_right = true;
 +
let saw_move = 0;
 +
 +
function draw() {
 +
let ctx1 = document.getElementById('canvas-1').getContext('2d');
 +
ctx1.globalCompositeOperation = 'destination-over';
 +
ctx1.clearRect(0,0,c1_WIDTH,c1_HEIGHT);
 +
 +
ctx1.save();
 +
 +
let time = new Date();
 +
 +
if (saw_move >= 50) {is_saw_right = false}
 +
if (saw_move <= 0)  { is_saw_right = true }
 +
if (is_saw_right) {
 +
saw_move++;
 +
} else {
 +
saw_move--;
 +
}
 +
ctx1.drawImage(saw, saw_move+10, 90-saw_move, 100, 100)
 +
ctx1.save();
 +
 +
ctx1.drawImage(grass, 50, 50, 100, 100);
 +
ctx1.save();
 +
 +
window.requestAnimationFrame(draw);
 +
}
 +
init();
 +
})
 +
</script>
 +
</div>
 +
<div class="home__item">
 +
<div class="home_text">
 +
<p class="mdc-typography--title">
 +
We utilized E.coli as dsRNA manufactory , which is much cheaper and more convenient than Chemical synthesis. And we constructed three kinds of vectors for dsRNA producing...
 +
</p>
 +
<a href="https://2017.igem.org/Team:Lanzhou/Design">Go to Design</a>
 +
</div>
 +
<canvas id="canvas-2"></canvas>
 +
<script type="text/javascript">
 +
$(function(){
 +
let c2_WIDTH = $('#canvas-2').width()
 +
c2_HEIGHT = $('#canvas-2').height()
 +
let saw = new Image(),
 +
hammer = new Image(),
 +
light = new Image();
 +
function init() {
 +
saw.src = 'https://static.igem.org/mediawiki/2017/5/5a/Lanzhou_wiki_home_saw.png';
 +
hammer.src = 'https://static.igem.org/mediawiki/2017/6/6e/Lanzhou_wiki_home_hammer.png';
 +
light.src = 'https://static.igem.org/mediawiki/2017/1/1f/Lanzhou_wiki_home_light.png';
 +
 +
window.requestAnimationFrame(draw);
 +
}
 +
 +
let is_hammer_rotate = true;
 +
let hammer_degree = 10;
 +
let i = 0;
  
<div class="column full_size" >
+
function draw() {
<img src="http://placehold.it/2000x300/d3d3d3/f2f2f2">
+
let c2 = document.getElementById('canvas-2');
</div>
+
let ctx2 = c2.getContext('2d');
 +
ctx2.globalCompositeOperation = 'destination-over';
 +
ctx2.clearRect(0,0,c2_WIDTH,c2_HEIGHT);
  
 +
if (is_hammer_rotate) {
 +
hammer_degree = hammer_degree + 5;
 +
} else {
 +
hammer_degree = hammer_degree - 5;
 +
}
 +
if (hammer_degree >= 50) {
 +
is_hammer_rotate = false;
 +
}
 +
if (hammer_degree <=0 ) {
 +
is_hammer_rotate = true
 +
}
  
 +
i++;
 +
if (i >= 100) {
 +
ctx2.drawImage(saw, 50, 30, 100, 100);
  
<div class="column full_size" >
+
ctx2.save();
<h1> Welcome to iGEM 2017! </h1>
+
<p>Your team has been approved and you are ready to start the iGEM season! </p>
+
if (i%21 != 2) {
</div>
+
if (i%21 != 5) {
 +
ctx2.drawImage(light, 100, 30, 10, 10);
 +
ctx2.drawImage(light, 70, 50, 10, 10);
 +
}
 +
}
 +
if (i%21 != 5 ){
 +
if (i%21 != 3) {
 +
ctx2.drawImage(light, 100, 30, 10, 10);
 +
ctx2.drawImage(light, 70, 50, 10, 10);
 +
ctx2.drawImage(light, 150, 50, 10, 10);
 +
}
 +
}
 +
if(i%21 != 4){
 +
if (i%21 != 3) {
 +
ctx2.drawImage(light, 120, 90, 10, 10);
 +
ctx2.drawImage(light, 150, 50, 10, 10);
 +
}
 +
}
 +
 +
  
<div class="clear"></div>
+
if (i > 400) {
 
+
i = 0;
<div class="column half_size" >
+
}
<h5>Before you start: </h5>
+
} else {
<p> Please read the following pages:</p>
+
ctx2.save();
<ul>
+
ctx2.translate(150, 130)
<li>  <a href="https://2017.igem.org/Competition">Competition Hub</a> </li>
+
ctx2.rotate(Math.PI/360*hammer_degree);
<li> <a href="https://2017.igem.org/Competition/Deliverables/Wiki">Wiki Requirements page</a></li>
+
ctx2.translate(-150, -130)
<li> <a href="https://2017.igem.org/Resources/Template_Documentation">Template documentation</a></li>
+
ctx2.drawImage(hammer, 90, 50, 70, 70);
</ul>
+
ctx2.restore();
</div>
+
ctx2.drawImage(saw, 50, 30, 100, 100)
 
+
}
<div class="column half_size" >
+
window.requestAnimationFrame(draw);
<div class="highlight">
+
}
<h5> Styling your wiki </h5>
+
init();
<p>You may style this page as you like or you can simply leave the style as it is. You can easily keep the styling and edit the content of these default wiki pages with your project information and completely fulfill the requirement to document your project.</p>
+
})
<p>While you may not win Best Wiki with this styling, your team is still eligible for all other awards. This default wiki meets the requirements, it improves navigability and ease of use for visitors, and you should not feel it is necessary to style beyond what has been provided.</p>
+
</script>
</div>
+
</div>
</div>
+
 
+
<div class="column full_size" >
+
<h5> Wiki template information </h5>
+
<p>We have created these wiki template pages to help you get started and to help you think about how your team will be evaluated. You can find a list of all the pages tied to awards here at the <a href="https://2017.igem.org/Judging/Pages_for_Awards">Pages for awards</a> link. You must edit these pages to be evaluated for medals and awards, but ultimately the design, layout, style and all other elements of your team wiki is up to you!</p>
+
 
+
</div>
+
 
+
 
+
 
+
 
+
<div class="column half_size" >
+
<h5> Editing your wiki </h5>
+
<p>On this page you can document your project, introduce your team members, document your progress and share your iGEM experience with the rest of the world! </p>
+
<p> <a href="https://2017.igem.org/wiki/index.php?title=Team:Example&action=edit"> </a>Use WikiTools - Edit in the black menu bar to edit this page</p>
+
 
+
</div>
+
 
+
 
+
<div class="column half_size" >
+
<h5>Tips</h5>
+
<p>This wiki will be your team’s first interaction with the rest of the world, so here are a few tips to help you get started: </p>
+
<ul>
+
<li>State your accomplishments! Tell people what you have achieved from the start. </li>
+
<li>Be clear about what you are doing and how you plan to do this.</li>
+
<li>You have a global audience! Consider the different backgrounds that your users come from.</li>
+
<li>Make sure information is easy to find; nothing should be more than 3 clicks away.  </li>
+
<li>Avoid using very small fonts and low contrast colors; information should be easy to read. </li>
+
<li>Start documenting your project as early as possible; don’t leave anything to the last minute before the Wiki Freeze. For a complete list of deadlines visit the <a href="https://2017.igem.org/Calendar">iGEM 2017 calendar</a> </li>
+
<li>Have lots of fun! </li>
+
</ul>
+
</div>
+
 
+
 
+
<div class="column half_size" >
+
<h5>Inspiration</h5>
+
<p> You can also view other team wikis for inspiration! Here are some examples:</p>
+
<ul>
+
<li> <a href="https://2014.igem.org/Team:SDU-Denmark/"> 2014 SDU Denmark </a> </li>
+
<li> <a href="https://2014.igem.org/Team:Aalto-Helsinki">2014 Aalto-Helsinki</a> </li>
+
<li> <a href="https://2014.igem.org/Team:LMU-Munich">2014 LMU-Munich</a> </li>
+
<li> <a href="https://2014.igem.org/Team:Michigan"> 2014 Michigan</a></li>
+
<li> <a href="https://2014.igem.org/Team:ITESM-Guadalajara">2014 ITESM-Guadalajara </a></li>
+
<li> <a href="https://2014.igem.org/Team:SCU-China"> 2014 SCU-China </a></li>
+
</ul>
+
</div>
+
 
+
<div class="column half_size" >
+
<h5> Uploading pictures and files </h5>
+
<p> You can upload your pictures and files to the iGEM 2017 server. Remember to keep all your pictures and files within your team's namespace or at least include your team's name in the file name. <br />
+
When you upload, set the "Destination Filename" to <br><code>T--YourOfficialTeamName--NameOfFile.jpg</code>. (If you don't do this, someone else might upload a different file with the same "Destination Filename", and your file would be erased!)<br><br>
+
 
+
<a href="https://2017.igem.org/Special:Upload">
+
UPLOAD FILES
+
</a>
+
</p>
+
</div>
+
  
 +
<div class="home__item">
 +
<canvas id="canvas-3"></canvas>
 +
<div class="home_text">
 +
<p class="mdc-typography--title">
 +
We noticed that many weeds are perennial plants, and they always chosen by pests as natural shelters to survive the brutal winter.
 +
</p>
 +
<p class="mdc-typography--title">
 +
This phenomenon inspired us to wipe out weeds and pests together by a method—tandem RNAi, which means triggering RNA interference in at least two organisms at the same time...
 +
</p>
 +
<a href="https://2017.igem.org/Team:Lanzhou/Tandem_RNAi">Go to Tandem RNAi</a>
 +
</div>
 +
<script type="text/javascript">
 +
$(function(){
 +
let c3_WIDTH = $('#canvas-3').width(),
 +
c3_HEIGHT = $('#canvas-3').height();
 +
let saw = new Image(),
 +
grass = new Image(),
 +
light = new Image();
 +
function init() {
 +
saw.src = 'https://static.igem.org/mediawiki/2017/5/5a/Lanzhou_wiki_home_saw.png';
 +
grass.src = 'https://static.igem.org/mediawiki/2017/7/73/Lanzhou_wiki_home_grass.png';
 +
light.src = 'https://static.igem.org/mediawiki/2017/1/1f/Lanzhou_wiki_home_light.png';
 +
 +
window.requestAnimationFrame(draw);
 +
}
 +
 +
let is_saw_right = true;
 +
let saw_move = 0;
 +
let i = 0;
 +
function draw() {
 +
let ctx3 = document.getElementById('canvas-3').getContext('2d');
 +
ctx3.globalCompositeOperation = 'destination-over';
 +
ctx3.clearRect(0,0,c3_WIDTH,c3_HEIGHT);
 +
ctx3.save();
 +
 +
i++;
 +
let time = new Date();
 +
if (i > 200) {
 +
ctx3.translate(-20, 30);
 +
ctx3.drawImage(saw, 50, 30, 100, 100);
 +
ctx3.drawImage(light, 100, 30, 10, 10);
 +
ctx3.drawImage(light, 70, 50, 10, 10);
 +
ctx3.drawImage(light, 150, 50, 10, 10);
 +
ctx3.drawImage(light, 120, 90, 10, 10);
 +
ctx3.translate(20, -30);
  
 +
ctx3.save();
 +
ctx3.translate(c3_WIDTH, c3_HEIGHT);
 +
ctx3.rotate((i-200)*0.4*Math.PI/360);
 +
ctx3.translate(-c3_WIDTH + (i-200), -c3_HEIGHT);
 +
ctx3.drawImage(grass, 50, 50, 100, 100);
 +
ctx3.translate(-c3_WIDTH - (i-200), -c3_HEIGHT);
 +
ctx3.restore();
 +
  
 +
if (i >= 300) {
 +
i = 0;
 +
}
  
 +
} else {
 +
if (saw_move >= 20) {is_saw_right = false}
 +
if (saw_move <= -40)  { is_saw_right = true }
 +
if (is_saw_right) {
 +
saw_move = saw_move + 3;
 +
} else {
 +
saw_move = saw_move - 3;
 +
}
  
 +
ctx3.save();
 +
ctx3.translate(saw_move, -saw_move+20);
 +
ctx3.drawImage(saw, 50, 30, 100, 100);
 +
ctx3.drawImage(light, 100, 30, 10, 10);
 +
ctx3.drawImage(light, 70, 50, 10, 10);
 +
ctx3.drawImage(light, 150, 50, 10, 10);
 +
ctx3.drawImage(light, 120, 90, 10, 10);
 +
ctx3.restore();
 +
 +
ctx3.drawImage(grass, 50, 50, 100, 100);
 +
}
  
 +
 +
window.requestAnimationFrame(draw);
 +
}
 +
init();
 +
})
 +
</script>
 +
</div>
  
 +
</main>
 
</html>
 
</html>
 +
{{Lanzhou/Footer}}

Latest revision as of 03:49, 2 November 2017

Lanzhou

Lanzhou2017

Pests and weeds are significant damages tot the crop field, which has been causing huge loss of agricultural economy.

And the traditional pesticides will easily cause resistance and pollution problem...

Go to background

We utilized E.coli as dsRNA manufactory , which is much cheaper and more convenient than Chemical synthesis. And we constructed three kinds of vectors for dsRNA producing...

Go to Design

We noticed that many weeds are perennial plants, and they always chosen by pests as natural shelters to survive the brutal winter.

This phenomenon inspired us to wipe out weeds and pests together by a method—tandem RNAi, which means triggering RNA interference in at least two organisms at the same time...

Go to Tandem RNAi