Team:AHUT China

From 2014.igem.org

(Difference between revisions)
 
(36 intermediate revisions not shown)
Line 1: Line 1:
-
{{:Team:UNC-Chapel_Hill/practicemenu}}
+
{{:Team:AHUT_China/normalize}}
 +
{{:Team:AHUT_China/Template/CSS_RESET}}
 +
{{:Team:AHUT_China/CSS}}
 +
 
<html>
<html>
 +
<script src="https://2014.igem.org/Team:AHUT_China/JSbox?action=raw&ctype=text/javascript" type="text/javascript" ></script>
 +
<script src="https://2014.igem.org/Team:AHUT_China/JSblock?action=raw&ctype=text/javascript" type="text/javascript" ></script>
 +
<script src="https://2014.igem.org/Team:AHUT_China/scrolltop?action=raw&ctype=text/javascript" type="text/javascript" ></script>
-
<!-- First block of content -->
 
-
<!-- end of first block -->
+
<div id="index_main">
 +
  <div id="AHUT_content">
 +
   
 +
    <div id="click_me">
 +
      <a href = "javascript:void(0)" onclick ="ToBeBlock()"></a> 
 +
    </div>
 +
   
 +
    <div id="detail">
 +
      <a href = "javascript:void(0)" onclick ="ToBeBlock_info()"></a> 
 +
    </div>
 +
   
 +
    <div id="light" class="white_content">
 +
   
 +
      <div id="jump_window_close"> <a href = "javascript:void(0)" onclick ="ToBeNone()"></a></div>
 +
      <div ><img src="https://static.igem.org/mediawiki/2014/1/13/AHUT_CHINA_2014_index_gjf.gif" style="height:100%; width:100%;" /></div>
 +
    </div>
 +
    <div id="fade" class="black_overlay">
 +
    </div>
 +
   
 +
    <div id="light_info" class="white_content_info">
 +
   
 +
      <div id="jump_window_close"> <a href = "javascript:void(0)" onclick ="ToBeNone_info()"></a></div>
 +
      <p style="font-family:Arial, Helvetica, sans-serif; font-size:24px; line-height:28px; color:#ffffff; text-align:center;">
 +
      BIO-COMPASS<hr />
 +
      </p>
 +
      <p style="font-family:Arial, Helvetica, sans-serif; font-size:16px; line-height:20px; color:#ffffff; text-align:justify; margin-top:10px;">
 +
        The aim of our project is to build a brand new bio-navigational system that can be used by the ordinary people. The map information will be coded in DNA strand and do corresponding biochemical operations. The bio-navigational database will establish the relationship between biochemical operation instructions and traditional navigation instructions. In order to reduce workload in advance, BIO-COMPASS can also screen reaction conditions according to the road conditions. Furthermore, we try to update the system to adapt to the more complex path plans. For this, we design some special enzyme sites which differ from standard bio-bricks' as the function interfaces. For example, "Logic Gate" genetic device can be inserted in our system to help us solve the path plan which include a transfer station between the start and the destination. BIO-COMPASS will find the best solution by using a variety of detection methods such as electrophoresis and reporter gene.
 +
      </p>
 +
    </div>
 +
    <div id="fade_info" class="black_overlay_info">
 +
    </div>
 +
   
 +
    <div id="index_navi">
 +
      <ul>
 +
        <li class="navi1"><a href="https://2014.igem.org/Team:AHUT_China/Team"></a></li>
 +
        <li class="navi2"><a href="https://2014.igem.org/Team:AHUT_China/Project"></a></li>
 +
        <li class="navi3"><a href="https://2014.igem.org/Team:AHUT_China/HumanPractices"></a></li>
 +
        <li class="navi4"><a href="https://2014.igem.org/Team:AHUT_China/Safety"></a></li>
 +
        <li class="navi5"><a href="https://2014.igem.org/Team:AHUT_China/Notebook"></a></li>
 +
        <li class="navi6"><a href="https://igem.org/"></a></li>
 +
      </ul>
 +
    </div>
 +
   
 +
  </div><!--AHUT_content-->
 +
 
 +
  <ul id="left_bar">
 +
      <li class="navi1"><a href="http://www.happyvalleychinesefood.com/igem/download/AHUT4iGEM_android.apk"></a></li>
 +
      <li class="navi2"><a href="http://www.happyvalleychinesefood.com/igem/download/AHUT4iGEM_iosbrk.ipa"></a></li>
 +
      <li class="navi3" id="goTopBtn"><a></a></li>
 +
      <script type=text/javascript>goTopEx();</script>
 +
  </ul>
 +
   
 +
</div><!--index_main-->
-
<head>
+
</html>
-
<link href="https://2014.igem.org/Team:UNC-Chapel_Hill/StyleSheets/HomePage?action=raw&ctype=text/css" rel="stylesheet">
+
-
<script>
+
-
$(document).ready(function() {
+
-
//Display slider for Javascript users
+
-
$('#Slider').css('display', 'block');
+
-
+
-
//Set height of slider (16/5 ratio)
+
-
$('#Slider').css('height', ($('body').width() / 3.2));
+
-
+
-
//Position right/left arrows
+
-
var BarHeight = $('#Slider').height() -  $('#BottomLinks').height();
+
-
$('#LeftBar, #RightBar').css('height', BarHeight);
+
-
$('#LeftArrow, #RightArrow').css('top', (BarHeight-60)/2);
+
-
//Repeats for window resize
+
{{:Team:AHUT_China/footer}}
-
$(window).resize(function() {
+
-
$('#Slider').css('height', ($('body').width() / 3.2));
+
-
+
-
var BarHeight = $('#Slider').height() -  $('#BottomLinks').height();
+
-
$('#LeftBar, #RightBar').css('height', BarHeight);
+
-
$('#LeftArrow, #RightArrow').css('top', (BarHeight-60)/2);
+
-
});
+
-
+
-
var TotalSlides = $('.Slides').length;
+
-
var CurrentSlide = 0;
+
-
 
+
-
$('#RightArrow').click(function() {
+
-
CurrentSlide = ++CurrentSlide % TotalSlides;
+
-
changeSlide(CurrentSlide);
+
-
});
+
-
+
-
$('#LeftArrow').click(function() {
+
-
CurrentSlide = (CurrentSlide + TotalSlides - 1) % TotalSlides;
+
-
changeSlide(CurrentSlide);
+
-
});
+
-
+
-
$('.SlideLink').click(function() {
+
-
var ClickedSlide = $(this).attr('id');
+
-
CurrentSlide = parseInt(ClickedSlide.replace('Link', ''));
+
-
changeSlide(CurrentSlide);
+
-
});
+
-
+
-
function changeSlide(num){
+
-
var SlideID = '#Slide' + num;
+
-
$('.Slides').css('display', 'none');
+
-
$(SlideID).css('display', 'block');
+
-
}
+
-
});
+
-
</script>
+
-
</head>
+
-
+
-
<body>
+
-
<section id="HomePageContent">
+
-
<div id="Slider">
+
-
<div id="Slide0" class="Slides current"></div>
+
-
<div id="Slide1" class="Slides"></div>
+
-
<div id="Slide2" class="Slides"></div>
+
-
<div id="Slide3" class="Slides"></div>
+
-
<div id="Slide4" class="Slides"></div>
+
-
<div id="Slide5" class="Slides"></div>
+
-
<div id="LeftBar" class="SideBar"><div id="LeftArrow"></div></div>
+
-
<div id="RightBar" class="SideBar"><div id="RightArrow"></div></div>
+
-
<ul id="BottomLinks">
+
-
<li id="Link0" class="SlideLink">Background</li><li id="Link1" class="SlideLink">Problem</li><li id="Link2" class="SlideLink">Tools</li><li id="Link3" class="SlideLink">Inspiration</li><li id="Link4" class="SlideLink">Solution</li><li id="Link5" class="SlideLink">Impact</li>
+
-
</ul>
+
-
</div>
+
-
 
+
-
 
+
-
<!--  Block of content 1 -->
+
-
<table width="100%"  cellspacing="0" height="500px">
+
-
<tr><td  bgColor="#f2f7fc"></td>
+
-
<td width="975px" align="center" bgColor="#f2f7fc" >
+
-
<table  width="975px"  cellspacing="0" height="500px">
+
-
<tr>
+
-
 
+
-
<td width="95%" bgColor="#f2f7fc"  rowspan="3" align="center">
+
-
 
+
-
<!-- Content goes here -->
+
-
 
+
-
 
+
-
<h3 style="color:#56A0D3;">Diabetes Mellitus</h3>
+
-
<p>Diabetes mellitus is prevalent throughout the world especially in the United States and Mexico. Current methods of treatments have largely remained the same. Patients prick their fingers to draw blood in order for a device to report their blood glucose levels. After the device gives them that information, they administer the appropriate amount of insulin to themselves. There has yet to be a unified system for the sensing of blood glucose levels and insulin administration. As a solution, we propose the following:</p>
+
-
<p style="color:#56A0D3;">The UNC Chapel Hill team has devised a protein controlled system in which E coli detects high glucose levels in its environment, and in response release one of two proteins, insulin or glucagon-like peptide-1 <br><font color="black">(Find out more at our <a href="https://2014.igem.org/Team:UNC-Chapel_Hill/Project#background">project page</a>)</font> </p>
+
-
</td> 
+
-
 
+
-
 
+
-
 
+
-
 
+
-
</table>
+
-
 
+
-
 
+
-
</td>
+
-
<td bgColor="#f2f7fc"></td>
+
-
</tr>
+
-
</table>
+
-
<!-- end of Block-->
+
-
 
+
-
 
+
-
 
+
-
<!--  Block of content 4 -->
+
-
<table width="100%"  cellspacing="0" height="500px">
+
-
<tr>
+
-
<td  bgColor="#c9def2"></td>
+
-
<td width="975px" align="center" bgColor="#c9def2" >
+
-
 
+
-
<table  width="975px"  cellspacing="0" height="500px">
+
-
<tr>
+
-
<td width="95%" bgColor="#c9def2"  rowspan="3" align="center">
+
-
<!-- Content goes here -->
+
-
 
+
-
<h3 style="color:#56A0D3;">Why did we choose this project?</h3>
+
-
<p>In the National Diabetes Statistics Report of 2014 released by the National Center for Chronic Disease Prevention and Health Promotion it was reported that 29.1 million Americans (9.3% of the US population) have diabetes mellitus. The cost both direct and indirect of diabetes treatment is estimated to be 245 billion dollars, and the disease remains the 7th leading cause of premature death in the United States. With the prevalence of diabetes mellitus in the US population the 2014 UNC Chapel Hill iGEM team as part of a University that prides itself in serving "North Carolina, the United States, and the world through teaching, research, and public service" felt an obligation to address this problem</p>
+
-
 
+
-
</td> 
+
-
 
+
-
 
+
-
 
+
-
 
+
-
</table>
+
-
</td>
+
-
<td bgColor="#c9def2"></td>
+
-
</tr>
+
-
</table>
+
-
<!-- end of Block-->
+
-
 
+
-
 
+
-
 
+
-
<!-- Final block of content -->
+
-
<table  id="firstblock" width="100%"  cellspacing="0" height="200px">
+
-
<tr>
+
-
<td  bgColor="#FFFFFF"></td>
+
-
<td width="975px" align="center" bgColor="#FFFFFF" >
+
-
 
+
-
<p>Here you can place the logos of your sponsors or other links!</p>
+
-
 
+
-
</td>
+
-
<td bgColor="#FFFFFF"></td>
+
-
</tr>
+
-
</table>
+
-
<!-- end of final block -->
+
-
 
+
-
<footer>
+
-
<a href="#" class="go-top">Top</a>
+
-
 
+
-
</footer>
+
-
</html>
+

Latest revision as of 03:20, 17 October 2014