Difference between revisions of "Team:TecMonterrey GDL/Description"

(Blanked the page)
Line 1: Line 1:
{{TecMonterrey_GDL}}
 
<html>
 
  
<!-- Uncomment these next lines if you want to work with this page -->
 
<!-- Comment them if you want to upload the code to the wiki-->
 
<!-- <head>
 
        <script
 
        src="https://code.jquery.com/jquery-3.3.1.min.js"
 
        integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
 
        crossorigin="anonymous"></script>
 
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
 
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigin="anonymous"></script>
 
    <meta charset="utf-8">
 
</head> -->
 
 
<style>
 
 
    /*----------------------------------*/
 
    /*-------- COLOR PALETTE -----------*/
 
    /*----------------------------------*/
 
 
    .purple-color{
 
        color: rgb(105, 67, 100);
 
    }
 
    .violet-color{
 
        color: rgb(151, 97, 144);
 
    }
 
    .blue-color{
 
        color: rgb(70, 102, 142);
 
    }
 
    .aqua-color{
 
        color: rgb(0, 151, 167);
 
    }
 
 
    .lightblue-color{
 
        color: rgb(64, 105, 134);
 
    }
 
 
    /*----------------------------------*/
 
    /*--------- PAGE STYLING -----------*/
 
    /*----------------------------------*/
 
 
    .container{
 
        min-height: 100vh;
 
    }
 
 
    .dots-container{
 
        height: 300px;
 
    }
 
 
    /* First section */
 
 
    .microbes-img{
 
        width: 7rem;
 
        margin-bottom: 1rem;
 
    }
 
    .title{
 
        font-size: 25px;
 
        font-weight: bold;
 
        margin-bottom: 3rem;
 
        margin-top: 2rem;
 
    }
 
    .subtitle{
 
        font-size: 22px;
 
        font-weight: bold;
 
    }
 
    .symbol{
 
        font-size: 25px;
 
        font-weight: bold;
 
    }
 
    .text{
 
        font-size: 18px !important;
 
        text-align: center !important;
 
    }
 
 
    /* Description section */
 
   
 
    .desc-title{
 
        font-size: 40px;
 
        margin: 3rem 0 3rem 0 !important;
 
    }
 
    .paragraphs p{
 
        font-size: 20px !important;
 
        text-align: justify !important;
 
    }
 
 
    @keyframes bounce {
 
        0%, 20%, 50%, 80%, 100% {
 
        transform: translateY(0);
 
        }
 
        40% {
 
        transform: translateY(-30px);
 
        }
 
        60% {
 
        transform: translateY(-15px);
 
        }
 
    }
 
 
    .arrow {
 
        margin-top: 2rem;
 
        width: 50px;
 
        height: 50px;
 
        margin-left: auto;
 
        margin-right: auto;
 
        background-image: url('./downarrow.png');
 
        background-repeat: no-repeat;
 
        background-size: contain;
 
    }
 
 
    .arrow:hover{
 
        cursor: pointer;
 
    }
 
 
    .bounce {
 
        -webkit-animation: bounce 2s infinite;
 
        -moz-animation: bounce 2s infinite;
 
        animation: bounce 2s infinite;
 
    }
 
 
    .third-page{
 
        padding-top: 5rem;
 
    }
 
 
</style>
 
<script>
 
    $(document).ready(function(){
 
        $('.arrow').click(function(event){
 
            var nextSection;
 
            switch(event.target.id){
 
                case 'arrow1':
 
                    nextSection = $("#page2");
 
                break;
 
                case 'arrow2':
 
                    nextSection = $("#page3");
 
                break;
 
            }
 
 
            $('html, body').animate({
 
                scrollTop: nextSection.first().offset().top
 
            }, 800);
 
        });
 
 
        // Canvas with bouncing dots
 
        var canvas = document.getElementById("lactobachill-bg");
 
        var ctx = canvas.getContext("2d");
 
        ctx.canvas.width  = $('.dots-container').width();
 
        ctx.canvas.height = $('.dots-container').height();
 
       
 
        class Circle {
 
            constructor  (x, y, radius, color) {
 
                this.offsetX = (Math.floor(Math.random() * 2) == 0)? .4:-.4;
 
                this.offsetY = (Math.floor(Math.random() * 2) == 0)? .4:-.4;
 
                this.x = x;
 
                this.y = y;
 
                this.radius = radius;
 
                this.color = color;
 
 
                this.update();
 
            }
 
           
 
            draw() {
 
                ctx.fillStyle = this.color;
 
                ctx.beginPath();
 
                ctx.arc(this.x, this.y, this.radius, 0, 2*Math.PI);
 
                ctx.fill();
 
            }
 
 
            update() {
 
                if((this.x - this.radius) <= 0 || (this.x + this.radius) >= canvas.clientWidth){
 
                    this.offsetX *= -1;
 
                }
 
                if((this.y + this.radius) >= canvas.clientHeight || (this.y - this.radius) <= 0){
 
                    this.offsetY *= -1;
 
                }
 
                this.x += this.offsetX;
 
                this.y += this.offsetY;
 
                this.draw();
 
            }
 
        }
 
   
 
       
 
        var circles = [];
 
       
 
        circles.push(new Circle(90, 200, 40, '#a3689be9'));
 
        circles.push(new Circle(300, 110, 100, '#5a93bbff'));
 
        circles.push(new Circle(200, 130, 48, '#c8ecf3e8'));
 
        circles.push(new Circle(180, 220, 50, '#d9b4f3ee'));
 
        circles.push(new Circle(350, 240, 55, '#75bff4ff'));
 
        circles.push(new Circle(150, 100, 45, '#eabad3ec'));
 
 
        circles.push(new Circle(500, 80, 70, '#68abdae4'));
 
        circles.push(new Circle(600, 100, 60, '#406986ff'));
 
        circles.push(new Circle(505, 190, 104, '#eac5d6e8'));
 
        circles.push(new Circle(640, 186, 68, '#c8ecf3e8'));
 
        circles.push(new Circle(680, 120, 65, '#cfa5f3e4'));
 
        circles.push(new Circle(730, 190, 63, '#e9d2e8ff'));
 
       
 
 
        function animate() {
 
            ctx.clearRect(0, 0, canvas.clientWidth, canvas.clientHeight);
 
            circles.forEach(function (circle) {
 
                circle.update();
 
            });
 
            requestAnimationFrame(animate);
 
            console.log('animate');
 
        }
 
        animate();
 
       
 
    });
 
</script>
 
 
<div class="container" id="page1">
 
    <div class="row">
 
        <div class="col-12 text-center dots-container">
 
            <canvas id="lactobachill-bg"></canvas>
 
        </div>
 
        <div class="col-12 text-center">
 
            <h2 class="purple-color title">A smart psychobiotic with anxiolytic and antidepressant properties</h2>
 
        </div>
 
    </div>
 
    <div class="row">
 
        <div class="col-md-5">
 
            <div class="row">
 
                <div class="col-8 text-center">
 
                    <img class="microbes-img" src="./psychotropic.png" alt="probiotics picture">
 
                    <h3 class="subtitle blue-color">Psychotropic</h3>
 
                    <p class="text blue-color">Substance that has an effect on people’s state of mind.</p>
 
                </div>
 
                <div class="col-4 text-center">
 
                    <span class="symbol blue-color">+</span>
 
                </div>
 
            </div>
 
        </div>
 
        <div class="col-md-4">
 
            <div class="row">
 
                <div class="col-8 text-center">
 
                    <img class="microbes-img" src="./probiotics.png" alt="probiotics picture">
 
                    <h3 class="subtitle violet-color">Probiotics</h3>
 
                    <p class="text violet-color">A microorganism that when consumed maintains or restores beneficial bacteria to the digestive tract.</p>
 
                </div>
 
                <div class="col-4 text-center">
 
                    <span class="symbol blue-color">=</span>
 
                </div>
 
            </div>
 
        </div>
 
        <div class="col-md-3 text-center">
 
            <img class="microbes-img" src="./psychobiotics.png" alt="probiotics picture">
 
            <h3 class="subtitle aqua-color">Psychobiotics</h3>
 
            <p class="text aqua-color">Gut microbiomes may have a significant impact on mood and cognition</p>
 
        </div>
 
    </div>
 
    <div class="text-center">
 
        <div class="arrow bounce" id="arrow1"></div>
 
    </div>
 
</div>
 
<div class="container" id="page2">
 
    <div class="row">
 
        <div class="col-12 text-center">
 
            <h2 class="desc-title lightblue-color">Description</h2>
 
        </div>
 
        <div class="col-12 paragraphs">
 
            <p>The microbiota has been consistently linked to human well-being. Studies show that microbiota not only can impact nutrition and metabolism, but also the mood.</p>
 
            <p>Psychobiotics is the field where probiotics and psychotropics (molecules that can alter mood) converge, opening the possibility of therapies where good bacteria can help lighten or reduce the impact of certain psychiatric conditions, such as depression. </p>
 
            <p>Depression affects more than 300 million people in the world, shockingly, an increase of more than 18% between 2005 and 2015 was observed according to World Health Organization (2018). There are many barriers towards dealing with depression, from availability of help to non-recognition of the problem. </p>
 
            <p>Depression is the leading cause of ill health and disability worldwide. Our Human Practices are centered towards conscientization and against stigmatization of depression; as well as performing a campaign to incentive people to seek aid when they need to.</p>
 
 
        </div>
 
    </div>
 
    <div class="text-center">
 
        <div class="arrow bounce" id="arrow2"></div>
 
    </div>
 
</div>
 
<div class="container" id="page3">
 
        <div class="row third-page">
 
            <div class="col-md-6 paragraphs">
 
                <p>On the other hand, there is a strong relationship between systemic inflammation and psychiatric disorders.</p>
 
                <p>Our strategy consists of genetically engineering Lactobacillus rhamnosus GG,  a natural gut probiotic, into producing and possible secreting soluble IL-6 receptors gp80 (mutated for increased affinity) and gp130 in order to aid reducing trans-signalization of the inflammatory pathway of cytokine interleukin 6.</p>
 
                <p>Our system will be triggered by nitrosative stress, which is a known pathway of inflammatory, depressive and stress afflictions.</p>
 
                <p>Blocking the trans-signaling of IL-6 system also prevents tryptophan catabolism to serotonin to deviate into other catabolites.</p>
 
                <p>This is how Lactobachill, can be used as an alternative treatment for depression as well as other inflammatory disorders.</p>
 
            </div>
 
            <div class="col-md-6 text-center d-flex align-items-center">
 
                <img class="process-img" src="https://static.igem.org/mediawiki/2018/4/4d/T--TecMonterrey_GDL--Description--process.png" alt="process image">
 
            </div>
 
        </div>
 
    </div>
 
 
</html>
 

Revision as of 01:16, 11 July 2018