Team:SYSU-China

From 2011.igem.org

(Difference between revisions)
Line 1: Line 1:
-
[[Image:Logo_portrait.jpg|right|frame|iGEM 2011, SYSU-China]]
+
{{:Team:SYSU-China/header/temp}}
 +
{{:Team:SYSU-China/header/jscss}}
-
<p>'''The Project'''</p>
+
<html xmlns="http://www.w3.org/1999/xhtml">
-
<p>   The  nuclear-leakage issue in Japan has caught world-wide attention this year. With  the difficulty to clean the nuclear fuel leaked after emergency, this issue has  caused huge environmental problems. With the wish to deal with or even  eliminate these problems both for this time and in the future, we spared no  effort to design our engineered <em>E. coli </em>nuclear-cleaner.<br /> <br>
+
<head>
 +
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 +
<title></title>
 +
<link rel="stylesheet" href="style.css" />
 +
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
 +
<script type="text/javascript">
 +
/*
 +
* FeatureList - simple and easy creation of an interactive "Featured Items" widget
 +
* Examples and documentation at: http://jqueryglobe.com/article/feature_list/
 +
* Version: 1.0.0 (01/09/2009)
 +
* Copyright (c) 2009 jQueryGlobe
 +
* Licensed under the MIT License: http://en.wikipedia.org/wiki/MIT_License
 +
* Requires: jQuery v1.3+
 +
*/
 +
;(function($) {
 +
$.fn.featureList = function(options) {
 +
var tabs = $(this);
 +
var output = $(options.output);
-
    Our approach to achieve that goal has two steps. First, we'll build chemotaxis to  Ionising radiation into our engineered bacteria so that they'll be able to move  towards seriously affected places. The radiation-sensitive promoter <em>PrecA</em> and the gene <em>CheZ</em> will help us accomplish that.  Second, when moved in a proper radiation level, <em>E. coli</em> could on one hand start  to absorb <sup>137</sup> Cs<sup>+</sup> and on the other hand aggregates with  other <em>E. coli</em>, forming sediment and making it much easier to collect and clean manually. The less radiation-sensitive promoter <em>PrecN</em>, gene <em>trkD</em>, which helps to deal with the Cs<sup>+</sup>  ions, and gene <em>ag43</em>, which handles  the aggregation work, help us to realize this step. Besides, some unknown areas are to be elucidated, such as disturbance of  usual environment, sensitivity of promoter, interaction between environment and  inner reaction in <em>E. coli</em>.<br> <br />
+
new jQuery.featureList(tabs, output, options);
-
    With all these effort, our nuclear cleaner will  become capable and accomplished in dealing with the nuclear-leakage issue. Moreover,  this model is supposed to be capable to absorb other radiation ions like <sup>131</sup> I<sup>-</sup>  and <sup>60</sup>Co<sup>+</sup> with the aid of the gene of other ion channels.  We are sure that our happy work this summer will contribute greatly to the  ultimate goal of this project – to clean all kinds of leaked nuclear pollutant  and reward people a better life.</p>
+
-
            <p><br>
+
-
'''The Team'''
+
return this;
-
<br>
+
};
-
  It is the first time that we Sun Yat-sen University take part in the competition. We spare no effort to bring you some new ideas and make a difference. Here's a photograph of our team members below.
+
-
<!--- The Mission, Experiments --->
+
$.featureList = function(tabs, output, options) {
 +
function slide(nr) {
 +
if (typeof nr == "undefined") {
 +
nr = visible_item + 1;
 +
nr = nr >= total_items ? 0 : nr;
 +
}
-
[[Image:Team_SYSU.jpg‎ |center|frame|Our team]]
+
tabs.removeClass('current').filter(":eq(" + nr + ")").addClass('current');
-
{| style="color:#1b2c8a;background-color:#0c6;" cellpadding="3" cellspacing="1" border="1" bordercolor="#fff" width="62%" align="center"
+
output.stop(true, true).filter(":visible").fadeOut();
-
!align="center"|[[Team:SYSU-China|Home]]
+
output.filter(":eq(" + nr + ")").fadeIn(function() {
-
!align="center"|[[Team:SYSU-China/Team|Team]]
+
visible_item = nr;
-
!align="center"|[https://igem.org/Team.cgi?year=2011&team_name=SYSU-China Official Team Profile]
+
});
-
!align="center"|[[Team:SYSU-China/Project|Project]]
+
}
-
!align="center"|[[Team:SYSU-China/Parts|Parts Submitted to the Registry]]
+
 
-
!align="center"|[[Team:SYSU-China/Modeling|Modeling]]
+
var options = options || {};
-
!align="center"|[[Team:SYSU-China/Notebook|Notebook]]
+
var total_items = tabs.length;
-
!align="center"|[[Team:SYSU-China/Safety|Safety]]
+
var visible_item = options.start_item || 0;
-
!align="center"|[[Team:SYSU-China/Attributions|Attributions]]
+
 
-
|}
+
options.pause_on_hover = options.pause_on_hover || true;
 +
options.transition_interval = options.transition_interval || 5000;
 +
 
 +
output.hide().eq( visible_item ).show();
 +
tabs.eq( visible_item ).addClass('current');
 +
 
 +
tabs.click(function() {
 +
if ($(this).hasClass('current')) {
 +
return false;
 +
}
 +
 
 +
slide( tabs.index( this) );
 +
});
 +
 
 +
if (options.transition_interval > 0) {
 +
var timer = setInterval(function () {
 +
slide();
 +
}, options.transition_interval);
 +
 
 +
if (options.pause_on_hover) {
 +
tabs.mouseenter(function() {
 +
clearInterval( timer );
 +
 
 +
}).mouseleave(function() {
 +
clearInterval( timer );
 +
timer = setInterval(function () {
 +
slide();
 +
}, options.transition_interval);
 +
});
 +
}
 +
}
 +
};
 +
})(jQuery);
 +
</script>
 +
<script language="javascript">
 +
$(document).ready(function() {
 +
 
 +
$.featureList(
 +
$("#tabs li a"),
 +
$("#output li"), {
 +
start_item : 1
 +
}
 +
);
 +
 
 +
/*
 +
 +
// Alternative
 +
 
 +
 +
$('#tabs li a').featureList({
 +
output : '#output li',
 +
start_item : 1
 +
});
 +
 
 +
*/
 +
 
 +
});
 +
</script>
 +
 
 +
</head>
 +
<body>
 +
<div id="background_shadow">
 +
  <div id="loge_bar"><img src="https://static.igem.org/mediawiki/igem.org/2/20/SYSU_Logo_bar.png" width="1000" height="138" /></div>
 +
   
 +
  <div id="content">
 +
<div id="feature_list">
 +
<ul id="tabs">
 +
<li>
 +
<a href="javascript:;">
 +
<img src="https://static.igem.org/mediawiki/igem.org/8/80/SYSU_Homepage_tab_news.png" />
 +
</a>
 +
  </li>
 +
<li>
 +
<a href="javascript:;">
 +
<img src="https://static.igem.org/mediawiki/igem.org/4/48/SYSU_Homepage_tab_story.png" />
 +
</a>
 +
</li>
 +
<li>
 +
<a href="javascript:;">
 +
<img src="https://static.igem.org/mediawiki/igem.org/0/0c/SYSU_Homepage_tab_project.png" />
 +
</a>
 +
</li>
 +
  <li>
 +
<a href="javascript:;">
 +
<img src="https://static.igem.org/mediawiki/igem.org/0/00/SYSU_Homepage_tab_humanpractice.png" />
 +
</a>
 +
</li>
 +
              <li>
 +
    <a href="javascript:;">
 +
    <img src="https://static.igem.org/mediawiki/igem.org/4/42/SYSU_Homepage_tab_aboutus.png" />
 +
    </a>
 +
  </li>
 +
 
 +
 
 +
</ul>
 +
  <ul id="output">
 +
                <li>
 +
<img src="https://static.igem.org/mediawiki/igem.org/7/77/SYSU_Home_bgp_news.png" />
 +
<a href="https://2011.igem.org/Team:SYSU-China/main_page_news">See details</a>
 +
        </li>
 +
                <li>
 +
<img src="https://static.igem.org/mediawiki/igem.org/3/36/SYSU_Home_bgp_story.png" />
 +
<a href="https://2011.igem.org/Team:SYSU-China/main_page_story">See details</a>
 +
</li>
 +
<li>
 +
<img src="https://static.igem.org/mediawiki/igem.org/d/da/SYSU_Home_bgp_project.png" />
 +
<a href="https://2011.igem.org/Team:SYSU-China/main_page_project">See details</a>
 +
  </li>
 +
              <li>
 +
<img src="https://static.igem.org/mediawiki/igem.org/8/82/SYSU_Home_bgp_humanpractice.png
 +
" />
 +
<a href="https://2011.igem.org/Team:SYSU-China/main_page_human_practice">See details</a>
 +
  </li>
 +
              <li>
 +
<img src="https://static.igem.org/mediawiki/igem.org/7/7b/SYSU_Home_bgp_aboutus.png
 +
" />
 +
<a href="https://2011.igem.org/Team:SYSU-China/main_page_aboutus">See details</a>
 +
  </li>
 +
 
 +
 
 +
 
 +
    </ul>
 +
 
 +
  </div>
 +
</div>
 +
   
 +
  <div class="contact_bottombar">
 +
      <p>From the 2011 iGEM team SYSU-China (2011)</p>
 +
      <p>Sun Yat-Sen University, Guangzhou, China</p>
 +
      <p>Address: 135# Xingang Rd.(W.), Haizhu Guangzhou, P.R.China</p>
 +
      <p><a href="http://eng.sysu.edu.cn/">visit the Sun Yat-sen university website</a></p>
 +
    </div>
 +
</div>
 +
</body>
 +
</html>

Revision as of 19:53, 5 October 2011

From the 2011 iGEM team SYSU-China (2011)

Sun Yat-Sen University, Guangzhou, China

Address: 135# Xingang Rd.(W.), Haizhu Guangzhou, P.R.China

visit the Sun Yat-sen university website