Team:HZAU-China

From 2013.igem.org

(Difference between revisions)
 
(7 intermediate revisions not shown)
Line 17: Line 17:
     height: auto;
     height: auto;
     width: 535px;
     width: 535px;
-
     padding-top: 10px;
+
     padding-top: 17px;
-
     padding-left: 18px;
+
     padding-left: 20px;
     padding-bottom: 10px;
     padding-bottom: 10px;
}
}
Line 37: Line 37:
     font-size: 20px;
     font-size: 20px;
     text-align: justify;
     text-align: justify;
-
    border-style: solid;
+
 
-
    border-width: 7px;
+
-
    border-color: #ffd017;
+
}
}
-
p {
+
p{
     line-height: 1.3em;
     line-height: 1.3em;
}
}
Line 48: Line 46:
     float: right;
     float: right;
     height: auto;
     height: auto;
-
     width: 400px;
+
     width: 420px;
-
     padding:5px;
+
     margin:0;
}
}
#para1{
#para1{
Line 55: Line 53:
     float: right;
     float: right;
     height: auto;
     height: auto;
-
     width: 380px;
+
     width: 400px;
-
     padding-top:10px;
+
     margin:0;
-
}
+
-
#para2{
+
-
    background-color: transparent;
+
-
    float: right;
+
-
    height: auto;
+
-
    width: 380px;
+
-
    padding-left:10px;
+
-
    padding-right:10px;
+
}
}
 +
#background12{
#background12{
     background:url(https://static.igem.org/mediawiki/2013/8/80/Old_wall.jpg);
     background:url(https://static.igem.org/mediawiki/2013/8/80/Old_wall.jpg);
Line 80: Line 71:
}
}
#sidebar1{
#sidebar1{
-
     background-color:#ffd017;
+
     background-color:#81aa29;
     clear: both;
     clear: both;
-
     height: auto;
+
     height: 119;
     width: 200px;
     width: 200px;
}
}
#sidebar2{
#sidebar2{
-
     background-color:#F3D972;
+
     background-color:#bbee4c;
     clear: both;
     clear: both;
-
     height: auto;
+
     height:396px;
 +
    padding-bottom:8px;
     width: 200px;
     width: 200px;
}
}
#sidebar3{
#sidebar3{
-
     background-color:#7770b4;
+
     background:url(https://static.igem.org/mediawiki/2013/archive/d/d7/20131028225958%2110001.png);
     clear: both;
     clear: both;
-
     height: auto;
+
     height: 119;
     width: 200px;
     width: 200px;
}
}
#sidebar4{
#sidebar4{
-
     background-color:#8ca6c0;
+
     background-color:#abd658;
     clear: both;
     clear: both;
-
     height: auto;
+
     height: 399px;
     width: 200px;
     width: 200px;
 +
    padding-bottom:5px;
}
}
</style>
</style>
-
<style>  
+
<head>
-
ul,li{margin:0;padding:0;}
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-
ul{list-style-type:none;}
+
<title>图片轮播,选项卡,图片幻灯片效果</title>
-
#box{position:relative;width:525px;height:395px;background-color:transparent;border:7px solid #000;margin:0px auto;cursor:pointer;}
+
<style type="text/css">
-
#box .list{position:relative;width:525px;height:395px;overflow:hidden;}
+
body{padding:0;margin:0;}
-
#box .list ul{position:absolute;top:0;left:0;}
+
        h1{margin:0;}
-
#box .list li{width:525px;height:395px;overflow:hidden;}
+
.box{position:relative;width:525px;margin:0px auto;}
-
#box .count{position:absolute;right:0;bottom:5px;}
+
.cont{height:365px;overflow:hidden;}
-
#box .count li{color:#fff;float:left;width:20px;height:20px;cursor:pointer;margin-right:5px;overflow:hidden;background:#ffd017;opacity:0.7;filter:alpha(opacity=70);border-radius:20px;}
+
.item{background:rgba(0,0,0,0.5);color:#fff;font-size:40px;position:absolute;left:0;bottom:0;width:100%;text-align:right;line-height:20px;height:20px;}
-
#box .count li.current{color:#fff;opacity:1;filter:alpha(opacity=100);font-weight:700;background:#7770b4;}
+
.item a{margin-right:5px;cursor:pointer;text-shadow:0 0 3px ;}
-
#tmp{width:100px;height:100px;background:red;position:absolute;}
+
a.seld{color:#ffd017;}
 +
a.hide{display:none;}
</style>
</style>
-
<script type="text/javascript">  
+
<script src="/ajaxjs/jquery-1.6.2.min.js" type="text/javascript"></script>
-
window.onload = function ()
+
<script type="text/javascript">
-
{
+
var n = 0;
-
var oBox = document.getElementById("box");
+
$(document).ready(function(){
-
var oList = oBox.getElementsByTagName("ul")[0];
+
count=$(".cont a").length;//显示区域的内容长度
-
var aImg = oBox.getElementsByTagName("img");
+
$(".item a").click(function(){
-
var timer = playTimer = null;
+
$(this).addClass("seld").siblings().removeClass("seld");
-
var index = i = 0;
+
var _index=$(this).index();//分屏的数字索引
-
var bOrder = true;
+
$(".cont>a").eq(_index).fadeIn(1000).siblings().fadeOut(1000);
-
var aTmp = [];
+
});
-
var aBtn = null;
+
t = setInterval("showAuto()", 7000);//执行定义好的函数
-
+
$(".box").hover(function(){clearInterval(t)}, function(){t = setInterval("showAuto()", 7000);});/*当鼠标划向图片时终止定时器,离开时再调用定时器*/
-
//生成数字按钮
+
})
-
for (i = 0; i < aImg.length; i++) aTmp.push("<li>" + (i + 1) + "</li>");
+
function showAuto()
-
+
-
//插入元素
+
-
var oCount = document.createElement("ul");
+
-
oCount.className = "count";
+
-
oCount.innerHTML = aTmp.join("");
+
-
oBox.appendChild(oCount);
+
-
aBtn = oBox.getElementsByTagName("ul")[1].getElementsByTagName("li");
+
-
+
-
//初始化状态
+
-
cutover();
+
-
+
-
//按钮点击切换
+
-
for (i = 0; i < aBtn.length; i++)
+
{
{
-
aBtn[i].index = i;
+
n = n >=(count - 1)?0: ++n;
-
aBtn[i].onmouseover = function ()
+
$(".item a").eq(n).trigger('click');
-
{
+
}
-
index = this.index;
+
-
cutover()
+
-
}
+
-
}
+
-
+
-
function cutover()
+
-
{
+
-
for (i = 0; i < aBtn.length; i++) aBtn[i].className = "";
+
-
aBtn[index].className = "current";
+
-
startMove(-(index * aImg[0].offsetHeight))
+
-
}
+
-
+
-
function next()
+
-
{
+
-
bOrder ? index++ : index--;
+
-
index <= 0 && (index = 0, bOrder = true);
+
-
index >= aBtn.length - 1 && (index = aBtn.length - 1, bOrder = false)
+
-
cutover()
+
-
}
+
-
+
-
playTimer = setInterval(next, 3000);
+
-
+
-
//鼠标移入展示区停止自动播放
+
-
oBox.onmouseover = function ()
+
-
{
+
-
clearInterval(playTimer)
+
-
};
+
-
+
-
//鼠标离开展示区开始自动播放
+
-
oBox.onmouseout = function ()
+
-
{
+
-
playTimer = setInterval(next, 3000)
+
-
};
+
-
function startMove(iTarget)
+
-
{
+
-
clearInterval(timer);
+
-
timer = setInterval(function ()
+
-
{
+
-
doMove(iTarget)
+
-
}, 30)
+
-
}
+
-
function doMove (iTarget)
+
-
{
+
-
var iSpeed = (iTarget - oList.offsetTop) / 10;
+
-
iSpeed = iSpeed > 0 ? Math.ceil(iSpeed) : Math.floor(iSpeed);
+
-
oList.offsetTop == iTarget ? clearInterval(timer) : oList.style.top = oList.offsetTop + iSpeed + "px"
+
-
}
+
-
};
+
</script>
</script>
 +
</head>
<body>
<body>
<div id="background11">
<div id="background11">
     <div id="picture">
     <div id="picture">
-
      <div id="box">
+
<div class="box">
-
      <div class="list">
+
    <div class="cont">
-
        <ul>
+
            <a><img src="https://static.igem.org/mediawiki/2013/1/12/Sy5.jpg" width="525" height="365" /></a>
-
             <li><img src="" width="525" height="395" /></li>
+
             <a class="hide"><img src="https://static.igem.org/mediawiki/2013/f/fc/DSC_3720.JPG" width="525" height="365" /></a>
-
             <li><img src="" width="525" height="395" /></li>
+
             <a class="hide"><img src="https://static.igem.org/mediawiki/2013/9/90/DSC_3472_%E5%89%AF%E6%9C%AC_%E5%89%AF%E6%9C%AC.jpg" width="525" height="365" /></a>
-
             <li><img src="" width="525" height="395" /></li>
+
             <a class="hide"><img src="https://static.igem.org/mediawiki/2013/7/7d/DSC_3546_%E5%89%AF%E6%9C%AC_%E5%89%AF%E6%9C%AC.jpg" width="525" height="365" /></a>
-
         </ul>
+
            <a class="hide"><img src="https://static.igem.org/mediawiki/2013/5/5a/DSC_3461_%E5%89%AF%E6%9C%AC2_%E5%89%AF%E6%9C%AC2.jpg" width="525" height="365" /></a>
-
      </div>
+
         </div>
-
      </div>
+
        <div class="item">
 +
        <a class="seld">·</a>
 +
            <a>·</a>
 +
            <a>·</a>
 +
            <a>·</a>
 +
            <a>·</a>
 +
        </div>
 +
        </div>
     </div>
     </div>
Line 216: Line 157:
       <div id="para1">
       <div id="para1">
           <div id="paragraphs02">
           <div id="paragraphs02">
-
           <center><span style="font-size:30px;font-weight:bold;font-family:Abstract;color:#ffd017;">Our Project</span></center>
+
           <p><span style="float:right;font-size:26.4px;font-family:Impact;color:#000000;line-height: 1.3em;">PROJECT: Safe Moving Vaccine Factory</span></p>
-
           </div>
+
           <p><span style="float:right;font-size:26.4px;font-family:Impact;color:#ffd017;line-height: 1.3em;">ABSTRACT</span></p>
-
          <div id="para2"> 
+
-
          <p font-family:times new roma;>The idea comes from Yersinia pestis and fleas. We make use of fleas as our moving injector. When flea feed blood from dogs, our vaccine vector Bacillus subtilis will be regurgitated into blood and successfully transferred to mammalian host. Bacillus subtilis can express antigens which can stimulate the immunity of dogs. Meanwhile, endogenous or exogenous expression of "Antimicrobial Peptides" by B. subtilis can kill Yersinia pestis in fleas. In this way we achieved a safe moving vaccine factory.</p>
+
           </div>
           </div>
 +
     
 +
          <p style="font-family:times new roman;">Our idea comes from <i>Yersinia pestis</i> and fleas. We make use of fleas as our moving injector. When fleas feed on blood from dogs, our vaccine vector <i>Bacillus subtilis</i> will be regurgitated into blood and successfully transferred to mammalian host. <i>Bacillus subtilis</i> can express antigens which can stimulate the immunity of dogs. Meanwhile, endogenous or exogenous expression of "Antimicrobial Peptides" by <i>B. subtilis</i> can kill <i>Yersinia pestis</i> in fleas. In this way we achieved a safe moving vaccine factory.</p>
       </div>
       </div>
       </div>
       </div>
Line 229: Line 170:
     <div id="sidebar">
     <div id="sidebar">
       <div id="sidebar3">
       <div id="sidebar3">
-
       <p  style="font-family:Arial,Helvetica,sans-serif;font-size:30px;font-color:#fff;text-align:center;padding:20px; margin:0px;"><a href=""></a></p>
+
       <p  style="font-family:Arial,Helvetica,sans-serif;font-size:30px;font-color:#fff;text-align:center; padding:20px;margin:0px;"><a href="https://2013.igem.org/Team:HZAU-China/Project">Overview of our project </a></p>
       </div>
       </div>
       <div id="sidebar4">
       <div id="sidebar4">
-
         <p  style="font-family:Arial,Helvetica,sans-serif;font-size:17px;font-color:#000;text-align:justify;padding:10px; margin:0px;"></p>
+
         <p  style="font-family:Arial,Helvetica,sans-serif;font-size:17px;font-color:#000;text-align:justify; padding:10px;margin:0px;">55000 people die of rabies per year and about 95% of human deaths occur in Asia and Africa. We hope our project can help in reaching the WHO goal of being free of human rabies by 2020. This section shows the core consideration of our project.
 +
</p>
       </div>       
       </div>       
     </div>
     </div>
Line 238: Line 180:
     <div id="sidebar">
     <div id="sidebar">
       <div id="sidebar1">
       <div id="sidebar1">
-
       <p  style="font-family:Arial,Helvetica,sans-serif;font-size:30px;font-color:#fff;text-align:center;padding:20px; margin:0px;"><a href=""></a></p>
+
       <p  style="font-family:Arial,Helvetica,sans-serif;font-size:30px;font-color:#fff;text-align:center; padding-left:8px;padding-right:8px;padding-top:1px;margin:0px;"><a href="https://2013.igem.org/Team:HZAU-China/Project/Flea_and_Yersinia_pestis">Yersinia pestis and flea</a></p>
       </div>
       </div>
       <div id="sidebar2">
       <div id="sidebar2">
-
         <p  style="font-family:Arial,Helvetica,sans-serif;font-size:17px;font-color:#000;text-align:justify;padding:10px; margin:0px;"> </p>
+
         <p  style="font-family:Arial,Helvetica,sans-serif;font-size:17px;font-color:#000;text-align:justify;padding:10px; margin:0px;">Yersinia pestis can form biofilms to colonize the proventricular of flea. Blocked fleas can transfer Yersinia pestis to host. The mechanism has been widely researched. Although it is too early for us to release clean fleas, we do spend a lot of time in thinking of this mechanism. You can find the details of this interesting mechanism in this section.</p>
       </div>       
       </div>       
     </div>
     </div>
Line 247: Line 189:
     <div id="sidebar">
     <div id="sidebar">
       <div id="sidebar3">
       <div id="sidebar3">
-
       <p  style="font-family:Arial,Helvetica,sans-serif;font-size:30px;font-color:#fff;text-align:center;padding:20px; margin:0px;"><a href=""></a></p>
+
       <p  style="font-family:Arial,Helvetica,sans-serif;font-size:30px;font-color:#fff;text-align:center;padding:20px; margin:0px;"><a href="https://2013.igem.org/Team:HZAU-China/Modeling/Cellular_automata">Cellular automaton</a></p>
       </div>
       </div>
       <div id="sidebar4">
       <div id="sidebar4">
-
         <p  style="font-family:Arial,Helvetica,sans-serif;font-size:17px;font-color:#000;text-align:justify;padding:10px; margin:0px;"> </p>
+
         <p  style="font-family:Arial,Helvetica,sans-serif;font-size:17px;font-color:#000;text-align:justify;padding:10px; margin:0px;">In order to know whether safe moving vaccine factory can reach 70% vaccination coverage of dogs, Cellular automaton model has been used to simulate the spread of immunity.</p>
       </div>       
       </div>       
     </div>
     </div>
Line 256: Line 198:
     <div id="sidebar">
     <div id="sidebar">
       <div id="sidebar1">
       <div id="sidebar1">
-
       <p  style="font-family:Arial,Helvetica,sans-serif;font-size:30px;font-color:#fff;text-align:center;padding:20px; margin:0px;"><a href=""></a></p>
+
       <p  style="font-family:Arial,Helvetica,sans-serif;font-size:30px;font-color:#fff;text-align:center;padding:20px; margin:0px;"><a href="https://2013.igem.org/Team:HZAU-China/Achievement/judgement">Judging form </a></p>
       </div>
       </div>
       <div id="sidebar2">
       <div id="sidebar2">
-
         <p  style="font-family:Arial,Helvetica,sans-serif;font-size:17px;font-color:#000;text-align:justify;padding:10px; margin:0px;"> </p>
+
         <p  style="font-family:Arial,Helvetica,sans-serif;font-size:17px;font-color:#000;text-align:justify;padding:10px; margin:0px;">This year is the first time we attend iGEM. And we applied to attend this competition on April 27,2013. It must be a big challenge for anyone to finish iGEM in just six months. We finished this hard work with trial and error. From our judging form, you can know what we have done in six months.</p>
       </div>       
       </div>       
     </div>
     </div>
Line 265: Line 207:
     <div id="sidebar">
     <div id="sidebar">
       <div id="sidebar3">
       <div id="sidebar3">
-
       <p  style="font-family:Arial,Helvetica,sans-serif;font-size:30px;font-color:#fff;text-align:center;padding:20px; margin:0px;"><a href=""></a></p>
+
       <p  style="font-family:Arial,Helvetica,sans-serif;font-size:30px;font-color:#fff;text-align:center;padding:20px; padding-left:22px;padding-right:22px;margin:0px;"><a href="https://2013.igem.org/Team:HZAU-China/Collaboration">Helpful Ideas</a></p>
       </div>
       </div>
       <div id="sidebar4">
       <div id="sidebar4">
-
         <p  style="font-family:Arial,Helvetica,sans-serif;font-size:17px;font-color:#000;text-align:justify;padding:10px; margin:0px;"> </p>
+
         <p  style="font-family:Arial,Helvetica,sans-serif;font-size:17px;font-color:#000;text-align:justify;padding:10px; margin:0px;">We are iGEMers this year! It is a big challenge for us to finish the assessment of safety at the beginning of our work. We think every new iGEMer will face this kind of challenge. So we made suggestions on safety assessment for your new iGEMer guys! We hope these helpful ideas can provide some useful information for safety assessment. </p>
       </div>       
       </div>       
     </div>
     </div>

Latest revision as of 11:22, 9 November 2013

图片轮播,选项卡,图片幻灯片效果

PROJECT: Safe Moving Vaccine Factory

ABSTRACT

Our idea comes from Yersinia pestis and fleas. We make use of fleas as our moving injector. When fleas feed on blood from dogs, our vaccine vector Bacillus subtilis will be regurgitated into blood and successfully transferred to mammalian host. Bacillus subtilis can express antigens which can stimulate the immunity of dogs. Meanwhile, endogenous or exogenous expression of "Antimicrobial Peptides" by B. subtilis can kill Yersinia pestis in fleas. In this way we achieved a safe moving vaccine factory.