Difference between revisions of "Team:UCSC"

Line 10: Line 10:
 
         </div>
 
         </div>
  
<style>
+
<style type="text/css">
 
#contentSub, #footer-box, #catlinks, #search-controls, #p-logo, .printfooter, .firstHeading,.visualClear {display: none;} /*-- hides default wiki settings --*/
 
#contentSub, #footer-box, #catlinks, #search-controls, #p-logo, .printfooter, .firstHeading,.visualClear {display: none;} /*-- hides default wiki settings --*/
 +
 +
 +
    #scroller {
 +
        position: relative;
 +
    }
 +
    #scroller .innerScrollArea {
 +
        overflow: hidden;
 +
        position: absolute;
 +
        left: 0;
 +
        right: 0;
 +
        top: 0;
 +
        bottom: 0;
 +
    }
 +
    #scroller ul {
 +
        padding: 0;
 +
        margin: 0;
 +
        position: relative;
 +
    }
 +
    #scroller li {
 +
        padding: 0;
 +
        margin: 0;
 +
        list-style-type: none;
 +
        position: absolute;
 +
    }
 +
 +
 +
 
</style>
 
</style>
  
Line 78: Line 105:
  
  
<h1 style="border-bottom: none;"> Welcome to UCSC iGEM 2015! </h1>
+
<div id="scroller" style="width: 880px; height: 400px; margin: 0 auto;">
<p style="padding: 0px 170px;"> The University of California, Santa Cruz strives to be a world leader in the emerging field of synthetic biology. UCSC introduces and trains our most brilliant and motivated students in this field of research in in order to enhance impending scientific talents in America while creating an impact in society.</p>
+
    <div class="innerScrollArea">
 +
        <ul>
 +
            <!-- Define photos here -->
 +
            <li><h1 style="border-bottom: none;"> Welcome to UCSC iGEM 2015! </h1><br/><br /><br />
 +
        <p style="padding: 0px 170px;"> The University of California, Santa Cruz strives to be a world leader in the emerging field of synthetic biology.  
 +
UCSC introduces and trains our most brilliant and motivated students in this field of research in in order to enhance impending scientific talents  
 +
in America while creating an impact in society.</p></li>
 +
            <li><img src="http://i.imgur.com/S3WI2cM.jpg" width="600" height="500" /></li>
 +
            <li><img src="http://i.imgur.com/9yB9dtO.jpg" width="600" height="400" /></li>
 +
            <li><img src="http://i.imgur.com/v7HAR5W.jpg" height="450" /></li>
 +
            <li><img src="https://scontent.xx.fbcdn.net/hphotos-xpf1/v/t1.0-9/11825855_1626906260925136_9044339136733102083_n.jpg?oh=a29dc8ff51cd32c5fbd800574697a608&oe=56355FFF" width="635" height="400" /></li>
 +
            <li><img src="http://i61.tinypic.com/23mmttt.jpg" width="635" height="400" /></li>
 +
            <li><img src="https://dl.pushbulletusercontent.com/bT8ETyQqbkRZ3aUFSojgWCuPIakbmElw/20150721_154620.jpg" width="567" height="400" /></li>
 +
        </ul>
 +
    </div>
 +
</div>
  
 
</td>
 
</td>
Line 111: Line 153:
 
<a href = "http://www.geneious.com/"> <img src= "https://static.igem.org/mediawiki/2014/d/d6/Genious_logo.png" height = "55px" align = "left"></a>
 
<a href = "http://www.geneious.com/"> <img src= "https://static.igem.org/mediawiki/2014/d/d6/Genious_logo.png" height = "55px" align = "left"></a>
 
<a href = "https://us.vwr.com/"> <img src= "https://static.igem.org/mediawiki/2014/4/4f/Sponsors_Logo_VWR.jpg" height = "30px" align = "left"></a>
 
<a href = "https://us.vwr.com/"> <img src= "https://static.igem.org/mediawiki/2014/4/4f/Sponsors_Logo_VWR.jpg" height = "30px" align = "left"></a>
<a href="http://www.hartnell.edu/"> <img src="https://static.igem.org/mediawiki/2015/a/a9/Fns4kg.png" width="55px" align = "left"></a>
 
 
<a href="http://www.hartnell.edu/"> <img src="https://static.igem.org/mediawiki/2015/a/a9/Fns4kg.png" width="55px" align = "left"></a>
 
<a href="http://www.hartnell.edu/"> <img src="https://static.igem.org/mediawiki/2015/a/a9/Fns4kg.png" width="55px" align = "left"></a>
 
             </ul>  
 
             </ul>  
Line 121: Line 162:
  
 
</div>
 
</div>
 +
</body>
 +
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
 +
<script type="text/javascript">
 +
    $(function(){
 +
        var scroller = $('#scroller div.innerScrollArea');
 +
        var scrollerContent = scroller.children('ul');
 +
        scrollerContent.children().clone().appendTo(scrollerContent);
 +
        var curX = 0;
 +
        scrollerContent.children().each(function(){
 +
            var $this = $(this);
 +
            $this.css('left', curX);
 +
            curX += $this.outerWidth(true);
 +
        });
 +
        var fullW = curX / 2;
 +
        var viewportW = scroller.width();
 +
 +
        // Scrolling speed management
 +
        var controller = {curSpeed:0, fullSpeed:2};
 +
        var $controller = $(controller);
 +
        var tweenToNewSpeed = function(newSpeed, duration)
 +
        {
 +
            if (duration === undefined)
 +
                duration = 600;
 +
            $controller.stop(true).animate({curSpeed:newSpeed}, duration);
 +
        };
 +
 +
        // Pause on hover
 +
        scroller.hover(function(){
 +
            tweenToNewSpeed(0);
 +
        }, function(){
 +
            tweenToNewSpeed(controller.fullSpeed);
 +
        });
 +
 +
        // Scrolling management; start the automatical scrolling
 +
        var doScroll = function()
 +
        {
 +
            var curX = scroller.scrollLeft();
 +
            var newX = curX + controller.curSpeed;
 +
            if (newX > fullW*2 - viewportW)
 +
                newX -= fullW;
 +
            scroller.scrollLeft(newX);
 +
        };
 +
        setInterval(doScroll, 20);
 +
        tweenToNewSpeed(controller.fullSpeed);
 +
    });
 +
</script>
  
 
</html>
 
</html>

Revision as of 23:35, 17 August 2015

Team UCSC banner.jpg

  • Welcome to UCSC iGEM 2015!




    The University of California, Santa Cruz strives to be a world leader in the emerging field of synthetic biology. UCSC introduces and trains our most brilliant and motivated students in this field of research in in order to enhance impending scientific talents in America while creating an impact in society.

Project Goal

Over the course of the past several years, the fuels that are primarily petroleum based have become progressively harder to acquire, and the continued usage of these fuels has resulted in increased amounts of pollution due to their prolonged carbon chain and the fact that there has been an increased burning of these fuels. Based on these facts and this particular energy dense process, shorter carbon cycled biofuels have become a growing area of research. Given this, it would be ideal to improve upon an existing biological mechanism, making it viable for large scale production. We have devised a plan that suggests the expression of gene homologs associated with butanol production in other microbes. We hope to improve the efficiency of this process and create a more sustainable method of bio-butanol production.