Difference between revisions of "Team:Jilin China"

 
(139 intermediate revisions by 6 users not shown)
Line 1: Line 1:
 
{{:Team:Jilin_China/partofBs_CSS}}
 
{{:Team:Jilin_China/partofBs_CSS}}
 
+
{{:Team:Jilin_China/fontawesome_CSS}}
 +
{{:Team:Jilin_China/Nav_Cont}}
 +
{{:Team:Jilin_China/Main_Cont_CSS}}
 
{{:Team:Jilin_China/Home_cont}}
 
{{:Team:Jilin_China/Home_cont}}
 +
<html>
  
 +
</html>
 +
<html>
  
 +
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
  
  
<html>
+
<script>//coupleColor = [ "#fff","#485"];
  
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
+
(function(){
 +
 +
  $("#HQ_page").addClass("luanhaixin");
 +
$("#HQ_page").removeAttr("id");
 +
})();
  
<script>
+
 
function $$(id){
+
 
var el=document.getElementById(id);
+
 
return el;
+
var HXT=1;
  }
+
</script>
function $C$(Class){
+
 
var el=document.getElementsByClassName(Class);
+
 
return el;
+
<style>
}
+
 
function $T$(Tag){
+
/*This Part for Cleaning Default Template*/
    var el=document.getElementsByTagName(Tag);
+
 
    return el;
+
#home_logo, #sideMenu { display:none; }
 +
html{width:100%;height:100%;background:white; list-style:none;}
 +
#globalWrapper,#HQ_page,#bodyContent,#mw-content-text{height:100%;}
 +
#sideMenu, #top_title, .patrollink {display:none;}
 +
#content { margin-left:0px; margin-top:-7px; padding:0px; width:100%;height:100%;}
 +
body {background-color:white;height:100%;}
 +
#bodyContent h1, #bodyContent h2, #bodyContent h3, #bodyContent h4, #bodyContent h5 { margin-bottom: 0px; }
 +
 
 +
@font-face{
 +
  font-family: 'DIN B';
 +
  src: url('https://static.igem.org/mediawiki/2019/f/f5/T--Jilin_China--Home--Font--Medium.otf');
 +
  font-weight: normal;
 +
  font-size: normal;
 +
}
 +
 
 +
@font-face{
 +
  font-family: 'DIN B';
 +
  src: url('https://static.igem.org/mediawiki/2019/9/90/T--Jilin_China--Home--Font--Bold.otf');
 +
  font-weight: Bold;
 +
  font-size: normal;
 +
}
 +
 
 +
h1,h2,h3,h4,h5,p{
 +
  font-family:'DIN B','DIN Medium';
 +
}
 +
h1, h2, h3, h4, h5, h6{
 +
overflow:auto !important;
 +
padding: 1rem 0 !important;
 +
}
 +
p{
 +
margin:0 !important;
 +
}
 +
html,
 +
body,
 +
div,
 +
span,
 +
applet,
 +
object,
 +
iframe,
 +
h1,
 +
h2,
 +
h3,
 +
h4,
 +
h5,
 +
h6,
 +
p,
 +
blockquote,
 +
pre,
 +
a,
 +
abbr,
 +
acronym,
 +
address,
 +
big,
 +
cite,
 +
code,
 +
del,
 +
dfn,
 +
em,
 +
img,
 +
ins,
 +
kbd,
 +
q,
 +
s,
 +
samp,
 +
small,
 +
strike,
 +
strong,
 +
sub,
 +
sup,
 +
tt,
 +
var,
 +
b,
 +
u,
 +
i,
 +
center,
 +
dl,
 +
dt,
 +
dd,
 +
ol,
 +
ul,
 +
li,
 +
fieldset,
 +
form,
 +
label,
 +
legend,
 +
table,
 +
caption,
 +
tbody,
 +
tfoot,
 +
thead,
 +
tr,
 +
th,
 +
td,
 +
article,
 +
aside,
 +
canvas,
 +
details,
 +
embed,
 +
figure,
 +
figcaption,
 +
footer,
 +
header,
 +
hgroup,
 +
menu,
 +
nav,
 +
output,
 +
ruby,
 +
section,
 +
summary,
 +
time,
 +
mark,
 +
audio,
 +
video {
 +
 
 +
  border: 0;
 +
 
 +
}
 +
 
 +
 
 +
 
 +
 
 +
html{
 +
height: 100% !important;
 
  }
 
  }
  
function getChildNodes(el, tagName) {
+
body{
        var nodes = [];
+
background-color:#fff !important;
        for (var i = 0; i < el.childNodes.length; i++){
+
height:100% !important;
            if (el.childNodes[i].tagName == tagName) nodes.push(el.childNodes[i]);
+
display:block !important;
          }
+
position:relative !important;
        return nodes;
+
overflow-x:hidden !important;
 +
 
 +
}
 +
#bodyContent{
 +
height:100% !important;
 +
display:block !important;
 +
position:relative !important;
 
}
 
}
  
 +
#content{
 +
height:100% !important;
 +
display:block !important;
 +
position:relative !important;
  
function scrollTopNow(){
 
  var scrolltop=document.documentElement.scrollTop||document.body.scrollTop; 
 
  return scrolltop;
 
 
}
 
}
//有关类名字的方法
+
 
function addClass(el, className) {
+
#mw-content-text{
    if (hasClass(el, className)) {
+
height:100% !important;
    return;
+
display:block !important;
    }
+
position:relative !important;
    let newClass = el.className.split(' ');
+
    newClass.push(className);
+
    el.className = newClass.join(' ');
+
 
}
 
}
  
function hasClass(el, className) {
+
 
      // \s匹配任何空白字符,包括空格、制表符、换页符等等
+
#globalWrapper{
    let reg = new RegExp('(^|\\s)' + className + '(\\s|$)');
+
height:100% !important;
    return reg.test(el.className);
+
display:block !important;
    }
+
position:relative !important;
function removeClass(el, className){
+
 
    if (!hasClass(el, className)) {
+
        return;
+
    }
+
    let newClass = el.className.split(' ');
+
    newClass.forEach(function(val, index, newClass){
+
    if(val === className){
+
        newClass.splice(index,1);
+
    }
+
    }) ;
+
    el.className = newClass.join(' ');
+
 
}
 
}
 +
.luanhaixin{
 +
height:100% !important;
 +
display:block !important;
 +
position:relative !important;
  
//获取屏幕上滚高度
 
  
 +
}
  
</script>
+
.s1 p{
 +
float:left;
 +
}
 +
section{
 +
font-family: 'DIN Alternate';
 +
line-height: 150%;
 +
}
  
<style>
+
@media (min-width:1000px) {
ul{
+
section{
list-style-type: none !important;
+
line-height: 200%;
 
}
 
}
 +
 +
}
 +
 +
 +
 +
 
.word {
 
.word {
 
color: rgba(0,0,0,1.00);
 
color: rgba(0,0,0,1.00);
Line 79: Line 221:
 
}
 
}
 
   p{
 
   p{
width: 90%;
+
width: 100%;
height: auto;
+
height: auto;1
 
margin: 0 auto;
 
margin: 0 auto;
 
position: relative;
 
position: relative;
 
   }
 
   }
  div{
+
 
    width: auto;
+
    height: auto;
+
    position: relative;
+
  }
+
 
tbody{
 
tbody{
 
width:50%;
 
width:50%;
Line 111: Line 249:
 
margin-bottom: 13px;
 
margin-bottom: 13px;
 
   }
 
   }
 +
 +
 +
 +
 +
 +
 +
#HQ_page p{
 +
font-size: auto;
 +
line-height: auto;
 +
margin-bottom: auto;
 +
  }
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +
  
  
Line 211: Line 371:
 
<!--屏幕内容第一条 导航栏 -->
 
<!--屏幕内容第一条 导航栏 -->
  
    <div  id="second_s" class="banner container-fluid">
+
  <!--this part for the home page content. with built-in css-->
   
+
<style>
 +
 +
/*Body Content*/
 +
section{
 +
width:100%;
 +
min-height:5rem;
 +
border:0px red solid;
 +
box-sizing:border-box;
 +
padding:3vw 7.5vw 6.5vw;
 +
}
 +
section h1{
 +
font-size: 2.8rem !important;
 +
/*font-family: 'DIN Condensed';*/
 +
}
 +
section h1.bg-white{
 +
color: rgba(255,83,83,1) !important;
 +
}
 +
section h2{
 +
font-size: 2rem !important;
 +
/*font-family: 'DIN Condensed';*/
 +
}
 +
 +
section.left .text{
 +
float: left !important;
 +
}
 +
section.right .text{
 +
float: right !important;
 +
}
 +
section.right .text *{
 +
float: right !important;
 +
}
 +
section.right .text h1{
 +
text-align: left !important;
 +
}
  
    </div>
 
<div  id="third_s" class="container-fluid">
 
    <div id="third_1" class="container">
 
<div id="third_1_1">
 
  
</div>
+
.button:hover{
</div>
+
box-shadow: 0.3rem 0 1rem rgba(0,0,0,0.3);
 +
transition: all 0.3s ease;
 +
background: rgba(255,201,230,1);
 +
}
 +
.button a{
 +
display: block;
 +
color: rgba(138,0,0,1);
 +
}
 +
 +
.button.colored{
 +
/*background: white;*/
 +
color: rgba(138,0,0,1);
 +
}
 +
 +
.clear{
 +
clear: both;
 +
}
 +
.s0{
 +
height:80%;
 +
background:rgba(255,0,90,0.7);
 +
overflow: hidden;
 +
z-index: 1;
 +
position:relative;
 +
}
 +
.s0 .title{
 +
position: relative;
 +
width: 50%;
 +
height: 100%;
 +
}
 +
.s0 .title img{
 +
position: absolute;
 +
bottom: 5vh;
 +
left:8vw;
 +
}
 +
.s0 .rose-background{
 +
background: url(https://static.igem.org/mediawiki/2019/f/fe/T--Jilin_China--Main--Rose.svg) no-repeat;
 +
background-size: contain;
 +
position: absolute;
 +
right:3vw;
 +
bottom:-25vw;
 +
transform: rotate(-19.9deg);
 +
filter: blur(10px) brightness(0.7);
 +
opacity: 0.3;
 +
width: 50vw;
 +
height:75vw;
 +
}
 +
 +
.s1{
 +
background: white;
 +
}
 +
/*对于内容相关的CSS使用内容相关Class,对于与顺序相关的使用 .s[num]*/
 +
.introduction .text{
 +
width:100%;
 +
 +
background-size: auto 75%;
 +
background-position: 90% calc(50% + 1.25rem);
 +
}
 +
 +
 +
 +
 +
.symptom .digits .digit{
 +
font-size:5.5vw;
 +
margin:0;
 +
}
 +
.symptom .digits .explain{
 +
margin:0 0 3vw !important;
 +
                        border:0px;
 +
}
 +
 +
.symptom .small-bg .image{
 +
width: 44%;
 +
padding: 0 5vw;
 +
margin:0 auto;
 +
box-sizing: border-box;
 +
}
 +
.symptom .small-bg .image img{
 +
width: 100%;
 +
text-align: center;
 +
margin: 0 auto;
 +
}
 +
.s2 .text{
 +
width: 100%;
 +
text-align: center;
 +
font-size:2vw;
 +
}
 +
 +
  
    </div>
 
  
<script>
+
 +
 +
 +
.s4{
 +
background: rgba(255,0,90,0.1);
 +
min-height: 34vh;
 +
z-index: -1;
 +
position: relative;
 +
}
 +
 +
 +
.s5{
 +
background: white;
 +
padding: 3vw 7.5vw;
 +
}
 +
.reverse p{
 +
color: rgba(199,0,0,1);
 +
margin:0;
 +
}
 +
 +
 +
.s6{
 +
background: rgba(255,0,99,.5);
 +
}
 +
.our-system{
 +
color: rgba(138,0,0,1);
 +
text-align: center;
 +
}
 +
 +
.our-system .theraputic{
 +
width: 100%;
 +
}
 +
  
//导航鼠标hover
+
.hp{
var nav_bg = document.getElementById("nav_bg");
+
background: white;
//获取导航外层项目
+
text-align: center;
//滑的太快有bug 排他原则去bug
+
position: relative;
 +
padding-bottom: 5vw;
  
var moding = 0; //是否在转换过程中
+
}
var mode_now = 0; //双模导航的模式
+
.hp h1{
 
+
text-align: center;
var coupleColor = [ "rgba(255,255,255,1)","rgba(255,0,60,.7)"];
+
}
 
+
var daErZi=[];
+
var last=0;
+
 
+
function initCB() {
+
$$("nav_bg").style.transition = 0.5 + "s";
+
 
 
}
+
  
//根据实际情况换文字颜色
+
.model h1{
function colorCA() {
+
position: relative;
for (var i = 0; i < getChildNodes($$("first_s").getElementsByTagName("ul")[0], "LI").length; i++) {
+
text-align: center;
getChildNodes($$("first_s").getElementsByTagName("ul")[0], "LI")[i].getElementsByTagName("a")[0].style.color = coupleColor[mode_now];
+
z-index: 1;
}
+
}
+
 
+
 
+
 
+
 
+
 
+
//模式1的所有行为
+
function nav_anti1() {
+
 
+
for (var i = 0; i < $$("first_s").getElementsByTagName("li").length; i++) {
+
//对象变that
+
var that = $$("first_s").getElementsByTagName("li")[i];
+
//获取所有有子节点的li并输出到数组中
+
if (getChildNodes($$("first_s").getElementsByTagName("li")[i], "UL").length > 0) {
+
daErZi.push(i + 1);
+
 
}
 
}
  
 
+
@keyframes swirling {
//遍历onmouseenter
+
0%{
(function (i) {
+
background-position: 48% 50%;
that.onmouseenter = function () {
+
/*transform: rotate(0deg);*/
+
}
+
100%{
                console.log(i+"来");
+
background-position: 52% 50%;
 +
/*transform: rotate(360deg);*/
 +
}
 +
}
 +
 +
.more h1{
 +
font-size: 3rem;
 +
color: rgba(119,0,0,1);
 +
}
 +
.more .bottons{
 +
width: 100%;
 
 
 +
}
 +
.more .botton{
 +
float: left;
 +
width: calc(33% - 2rem);
 +
margin: 1rem;
 +
height: 20vw;
 +
background: rgba(255,201,230,1);
 +
transition: 0.3s all ease;
 +
}
 +
.more .botton:hover {
 +
background: rgba(255,201,230,0.3);
 +
transition: 0.3s all ease;
 +
}
 +
.more .botton p{
 +
margin: 0;
 +
line-height: 20vw;
 +
text-align: center;
 +
font-size: 2.5vw;
 +
}
 +
</style>
 +
<section class="s0 banner" style="padding: 0 0;">
 +
<div class="title"><img alt="" src="https://static.igem.org/mediawiki/2019/f/f8/T--Jilin_China--Main--Words_-_Title.svg"/></div>
 +
<div class="rose-background">
 +
</div>
 +
<canvas id="maincabg" width="1920px" height="1080px" style="height:100%; height:auto;display: block;position: absolute;top: 0px; z-index: -1;"></canvas>
 +
</section>
 +
<section class="s1 introduction left">
 +
<div></div>
 +
<div class="text">
 +
<h1 class="bg-white">What's VVC?</h1>
 +
<p>Vulvovaginal candidiasis (VVC) has been recognized as one of the most common infections in female reproductive organs. </p>
 +
<p>VVC is mainly caused by <em>Candida albicans (C. albicans)</em>, accounting for more than 85% of the incidence, which seriously affects the normal life of women.</p>
 +
</div>
 +
<div class="clear"></div>
 +
</section>
 +
<section class="s2 symptom">
 +
<div class="digits">
 +
<p class="digit">70-75%</p>
 +
<p class="explain">of women will suffer from VVC at least once in thier life time.</p>
 +
<p class="digit">40-45%</p>
 +
<p class="explain">will have 2 or more episodes.</p>
 +
</div>
 +
<div class="small-bg">
 +
<div class="title">
 +
<h2 class="bg-colored">Symptoms</h2>
 +
</div>
 +
<div class="image">
 +
<img alt="" src="https://static.igem.org/mediawiki/2019/7/71/T--Jilin_China--Main--Girl_under_Period.svg" />
 +
</div>
 +
<div class="text">
 +
<p>Abnormal Vaginal Discharge</p>
 +
<p>Genital and Vaginal burning</p>
 +
<p>External Dysuria</p>
 +
<p>Itching and Redness</p>
 +
</div>
 +
 +
<div class="clear"></div>
 +
</div>
 +
</section>
 +
<section class="s3 current-treatment right">
 +
<div class="text">
 +
<h1 class="bg-white">How to Treat?</h1>
 +
<p>Till now, as a commonly used antifungal drug for VVC treatment, vaginal azole preparations can inhibit the growth of C. albicans, or kill them directly.</p>
 +
</div>
 +
<div class="clear"></div>
 +
</section>
 +
<div class="interspace">
 +
<p>HOWEVER</p>
 +
<div class="clear"></div>
 +
</div>
 +
<section class="s4 resistance right">
 +
<div class="text">
 +
<p id="ssss">The widespread usage of antifungal drugs and the increase in the number of fungal infections have led to the emergence of drug resistance, even the repeated recurrence to VVC of patients.</p>
 +
</div>
 +
<div class="clear"></div>
 +
<div class="button colored"><a href="https://2019.igem.org/Team:Jilin_China/Background"><p>Learn More about The Background</p></a></div>
 +
<div class="clear"></div>
 +
</section>
 +
<section class="s5 reverse">
 +
<p>But, there is a</p>
 +
<p>New Therapy for Vulvovaginal Candidasis:</p>
 +
<div class="clear"></div>
 +
</section>
 +
<section class="s6 our-system">
 +
<h1>Our Systems</h1>
 +
<div class="sensing">
 +
<h2>Sensing System</h2>
 +
<p style="margin-bottom:30px;margin-top:30px;  ">Sensing system can sense C. albicans and activate the downstream gene.</p >
 +
<img alt="" src="https://static.igem.org/mediawiki/2019/5/56/T--Jilin_China--Main--Words_-_Sensing_System.svg" />
 +
<p></p>
 +
</div>
 +
  
for (var b = 0; b < getChildNodes($$("first_s").getElementsByTagName("ul")[0], "LI").length; b++) {
+
<div class="theraputic">
//摸到了怎么办
+
<h2>Therapeutic System</h2>
if (this === getChildNodes($$("first_s").getElementsByTagName("ul")[0], "LI")[b]) {
+
<div>
 +
<div class="effector1"><p>LL-37 can perforate the cell membrane of C. albicans.</p><img alt="" src="https://static.igem.org/mediawiki/2019/2/2e/T--Jilin_China--Main--LL37.svg"/></div>
 +
<div class="effector2"><p>The β-1,3-glucanase can disrupt the </br>biofilm of C. albicans.</p><img alt="" src="https://static.igem.org/mediawiki/2019/3/32/T--Jilin_China--Main--beta-1%EF%BC%8C3-glu.svg"/></div>
 +
<div class="effector3"><p>BDSF can inhibit hypha formation </br>by C. albicans.</p><img alt="" src="https://static.igem.org/mediawiki/2019/e/ed/T--Jilin_China--Main--BDSF.svg"/></div>
 +
<div class="effector4"><p>Msp1 can destabilize the hyphae of C. albicans.</p><img alt="" src="https://static.igem.org/mediawiki/2019/c/cc/T--Jilin_China--Main--Msp1.svg"/></div>
 +
</div>
 +
</div>
 +
<div class="clear"></div>
 +
<div class="button colored"><a href="https://2019.igem.org/Team:Jilin_China/Design"><p>Learn More about Our Design</p></a></div>
 +
<div class="clear"></div>
 +
</section>
 +
<section class="s7 hp">
  
//其他的进度条消失
 
  
$C$("jindutiao")[b].style.display = "none";
 
 
$C$("jindutiao")[b].style.transition = 0 + "s" + " linear";
 
$C$("jindutiao")[b].style.width = 100+ "%";
 
 
this.style.backgroundColor = coupleColor[mode_now];
 
this.getElementsByTagName("a")[0].style.color = coupleColor[mode_now == 0 ? mode_now + 1 : (mode_now == 1 ? mode_now - 1 : 0)];
 
  
}
 
  
}
 
 
//如果有子菜单的话那就放出来
 
if (getChildNodes(this, "UL").length > 0) {
 
  
for (var i = 0; i < $C$("navul1").length; i++) {
+
<h1 class="bg-white">Practices Facilitated Our Project</h1>
$C$("navul1")[i].style.display="none";
+
}
+
//alert("d");
+
for (var j = 0; j < getChildNodes(this, "UL").length; j++) {
+
getChildNodes(this, "UL")[j].style.display = "block";
+
var ul = getChildNodes(this, "UL")[j];
+
setTimeout(function () {
+
  
for (var z = getChildNodes(ul, "LI").length - 1, x = 0; z >= 0; z--, x++) {
+
<div class="third_s">
 +
  <div id="third_1">
 +
<div style="padding: 7.5vw"><img src="https://static.igem.org/mediawiki/2019/b/bc/T--Jilin_China--HP--HP_Overview.svg" width="100%" style=" margin: 0 auto"></div>
 +
  </div>
 +
  
(function (z, x) {
+
  
                  setTimeout(function(){getChildNodes(ul, "LI")[z].style.display = "block";},20);
 
time_1 = setTimeout(function () {
 
  
getChildNodes(ul, "LI")[z].style.transition = 0.5 + "s ease";
 
getChildNodes(ul, "LI")[z].style.zIndex = x * 10 + 5;
 
getChildNodes(ul, "LI")[z].style.transform = "translate(0px," + 61 * z + "px)";
 
getChildNodes(ul, "LI")[z].style.opacity = 1;
 
  
  
}, 50 * (x + 1))
 
  
})(z, x);
 
  
  
 +
<div class="clear"></div>
 +
</section>
  
}
+
<style>
  
  
}, 10);
 
}
 
  
}
 
  
}
+
.s8 .text {
 +
 +
float: right;
 +
z-index: 20000;
  
})(i);
 
  
//离开的动作
+
(function (i) {
+
.modelbg{
that.onmouseleave = function () {
+
z-index: 20px;
+
}
+
//碰到有节点的li不进行离开//或者离开一半
+
for (var m = 0; m < daErZi.length; m++) {
+
if (i == daErZi[m]) {
+
return;
+
}
+
}
+
//背景变色
+
//initCB();
+
//colorCA();
+
  
+
</style>
  
//如果有子菜单的话那就收回来
 
if (getChildNodes(this, "UL").length > 0) {
 
this.style.backgroundColor = coupleColor[1];
 
this.getElementsByTagName("a")[0].style.color = coupleColor[0];
 
  
//alert("d");
 
for (var j = 0; j < getChildNodes(this, "UL").length; j++) {
 
var ul = getChildNodes(this, "UL")[j];
 
for (var z = getChildNodes(ul, "LI").length - 1, x = 0; z >= 0; z--, x++) {
 
  
(function (z, x) {
 
setTimeout(function () {
 
getChildNodes(ul, "LI")[z].style.opacity = 0;
 
getChildNodes(ul, "LI")[z].style.transition = .2 + "s ease";
 
getChildNodes(ul, "LI")[z].style.transform = "translate(0px," + 0 + "px)";
 
                setTimeout(function(){getChildNodes(ul, "LI")[z].style.display = "none";},200);
 
  
}, 10 * (x + 1))
+
<section class="s8 model right">
 +
<h1 class="bg-white">Model</h1>
 +
<div class="text">
  
})(z, x);
+
<p>Our project is well conducted by Model in terms of experiments and prediction of future application. Our Model is constituted with</br></br>1. C. albicans Sensing Model</br>2. Gene Concentration Prediction Model</br>3. Market Prediction Model</p>
 +
</div>
 +
<div class="clear"></div>
 +
<div class="button colored"><a href="https://2019.igem.org/Team:Jilin_China/Model"><p>Learn More about Our Model</p></a></div>
 +
<div class="clear"></div>
 +
</section>
  
}
 
  
}
 
  
}
 
  
}
+
<section class="s9 more">
 +
<h1>In Case You Missed Them:</h1>
 +
<div class="bottons">
 +
<div id="bbgd"  class="botton otr"><p>Background</p><a class="foota otr1" href="https://2019.igem.org/Team:Jilin_China/Background"></a></div>
 +
<div id="design" class="botton otr"><p>Design</p><a class="foota otr1" href="https://2019.igem.org/Team:Jilin_China/Design"></a></div>
  
 +
<div id="result" class="botton otr"><p>Result</p><a class="foota otr1" href="https://2019.igem.org/Result"></a></div>
  
})(i);
+
<div id="par" class="botton otr"><p>Parts</p><a class="foota otr1" href="https://2019.igem.org/Team:Jilin_China/Parts"></a></div>
}
+
  
}
+
<div id="hpp" class="botton otr"><p>Practices</p><a class="foota otr1" href="https://2019.igem.org/Team:Jilin_China/Human_Practices"></a></div>
nav_anti1();
+
<div id="medal" class="botton otr"><p>Medals</p><a class="foota otr1" href="https://2019.igem.org/Team:Jilin_China/Medals"></a></div>
var heighta = document.body.offsetHeight;
+
</div>
var srcolltop;
+
<div class="clear"></div>
window.onscroll=function(){
+
</section>
srcolltop=document.documentElement.scrollTop || document.body.scrollTop;
+
if(srcolltop>80){
+
$$("first_s").style.position="fixed";
+
}
+
  if(srcolltop<80){
+
    $$("first_s").style.position="absolute";
+
  }
+
}
+
  
</script>
+
<style>
<script>
+
    #bbgd{
function chuxian(el){
+
    background-image: url(https://static.igem.org/mediawiki/2019/d/d4/T--Jilin_China--Main--back.jpg);
  el.style.transform="translate(-50%,0px)";
+
    background-size: cover;
  el.style.display="block";
+
    }
  el.style.opacity=0;
+
  setTimeout(function(){
+
    #design{
    el.style.transition="0.5s";
+
    background-image: url(https://static.igem.org/mediawiki/2019/d/d9/T--Jilin_China--Main--design.JPG);
    el.style.transform="translate(0%,0px)";
+
    background-size: cover;
     el.style.opacity=1;
+
     }
  },20);
+
        #result{
 
+
    background-image: url(https://static.igem.org/mediawiki/2019/6/6b/T--Jilin_China--Main--result.JPG);
}
+
    background-size: cover;
 
+
    }
function xiaoshi(el){
+
        #par{
 
+
    background-image: url(https://static.igem.org/mediawiki/2019/b/b2/T--Jilin_China--Main--part.jpg);
 
+
    background-size: cover;
    el.style.transition="0.2s";
+
     }
    el.style.transform="translate(-50%,0px)";
+
        #hpp{
     el.style.opacity=0;
+
    background-image: url(https://static.igem.org/mediawiki/2019/9/9a/T--Jilin_China--Main--HP.jpg);
setTimeout(function(){
+
    background-size: cover;
 
+
    }
  el.style.display="none";
+
        #medal{
  },200);
+
    background-image: url(https://static.igem.org/mediawiki/2019/8/80/T--Jilin_China--Main--model.JPG);
 
+
    background-size: cover;
 
+
}
+
 
+
 
+
 
+
function zibianse(num){
+
 
+
  for(var i=0;i<$C$("s501").length;i++){
+
    if(i!=num){
+
        xiaoshi($C$("div502")[i]);
+
 
     }
 
     }
 
 
    if(hasClass($C$("s501")[i],"able")){
 
      removeClass($C$("s501")[i],"able");
 
  }
 
  }
 
  addClass($C$("s501")[num],"able")
 
}
 
  
  
  
  
 +
.otr{
 +
display: block;
 +
position: relative;
  
 +
color: #fff;
 +
text-shadow: 5px 2px 35px #000;
 +
transition: 1s;
 +
}
  
  
 +
.otr:hover{
 +
text-shadow: 5px 2px 10px #000;
 +
}
  
for(var i=0;i<$C$("s501").length;i++){
+
.otr1{
  (function(i){
+
display: block;
    $C$("s501")[i].onclick=function(e){
+
position: relative;
      event.stopPropagation();
+
top: 0vw;
      zibianse(i);
+
}
   
+
</style>
      chuxian($C$("div502")[i]);
+
     
+
    }
+
  
  })(i)
 
}
 
  
$C$("navbtn")[0].onclick=function(){
+
</html>
    $C$("mobilenav")[0].style.display="block";
+
  chuxian($C$("div501")[0]);
+
  $C$("div503")[0].style.display="block";
+
  
}
 
for(var i=0;i<$C$("s501").length;i++){
 
 
(function(i){
 
  $C$("div502")[i].onclick=function(e){
 
 
 
  xiaoshi($C$("div502")[i]);
 
 
 
}
 
 
 
  })(i)
 
}
 
 
 
$C$("div503")[0].onclick=function(){
 
    xiaoshi($C$("div501")[0]);
 
    this.style.display="none";
 
    $C$("mobilenav")[0].style.display="none";
 
}
 
 
 
</script>
 
 
</html>
 
  
 
<html>
 
<html>
 
  
 
<script src="https://2019.igem.org/wiki/index.php?title=Template:Jilin_China/tool.js&action=raw&ctype=text/javascript"></script>
 
<script src="https://2019.igem.org/wiki/index.php?title=Template:Jilin_China/tool.js&action=raw&ctype=text/javascript"></script>
<script src="https://2019.igem.org/wiki/index.php?title=Template:Jilin_China/renderTP.js&action=raw&ctype=text/javascript"></script>
+
<script src="https://2019.igem.org/wiki/index.php?title=Template:Jilin_China/bubble.js&action=raw&ctype=text/javascript"></script>
 
+
<script type="text/javascript">
  
 +
let configs = {
 +
colorStart: "#fff4e6",
 +
colorStop: "#ffe9e4",
 +
 +
compose: "source-over",
 +
bubbleFunc: () => `hsla(${Math.random() * 50}, 100%, 50%, .3)`,
 +
canvas: $$("maincabg")
 +
}
 +
  
 +
bubbly(configs);
 +
</script>
 
</html>
 
</html>
 +
{{:Team:Jilin_China/foot_Cont}}

Latest revision as of 03:32, 22 October 2019

Team
Project
Lab
Model
Parts
HP
Judging
Home
Members
Collaborations
Attributtions
Background
Description
Design
Result
Demonstrate
Notebook
Protocols
Safety
Model
Our parts
Improvement
Measurement
Integrated
Engagement
Juding Form
Medals

What's VVC?

Vulvovaginal candidiasis (VVC) has been recognized as one of the most common infections in female reproductive organs.

VVC is mainly caused by Candida albicans (C. albicans), accounting for more than 85% of the incidence, which seriously affects the normal life of women.

70-75%

of women will suffer from VVC at least once in thier life time.

40-45%

will have 2 or more episodes.

Symptoms

Abnormal Vaginal Discharge

Genital and Vaginal burning

External Dysuria

Itching and Redness

How to Treat?

Till now, as a commonly used antifungal drug for VVC treatment, vaginal azole preparations can inhibit the growth of C. albicans, or kill them directly.

HOWEVER

The widespread usage of antifungal drugs and the increase in the number of fungal infections have led to the emergence of drug resistance, even the repeated recurrence to VVC of patients.

But, there is a

New Therapy for Vulvovaginal Candidasis:

Our Systems

Sensing System

Sensing system can sense C. albicans and activate the downstream gene.

Therapeutic System

LL-37 can perforate the cell membrane of C. albicans.

The β-1,3-glucanase can disrupt the
biofilm of C. albicans.

BDSF can inhibit hypha formation
by C. albicans.

Msp1 can destabilize the hyphae of C. albicans.

Practices Facilitated Our Project

Model

Our project is well conducted by Model in terms of experiments and prediction of future application. Our Model is constituted with

1. C. albicans Sensing Model
2. Gene Concentration Prediction Model
3. Market Prediction Model

In Case You Missed Them:

Background

Design

Result

Parts

Practices

Medals


CONTACT US
Jilin_China AT Outlook.com
Nation Engineering Labortory for
AIDS Vaccine
Comate Bioscience
Gen Script
TransGen Biotech
MathWorks
Jilin
University
School of Life Science
TAIMEI TECHNOLOGY
Git Hub
NEW ENGLAND BioLabs
Agilent
Technologies