Team:Berlin/Project
From 2014.igem.org
(Difference between revisions)
Line 213: | Line 213: | ||
<script> | <script> | ||
+ | |||
// NAVBAR STYLE | // NAVBAR STYLE | ||
Line 230: | Line 231: | ||
}); | }); | ||
+ | |||
+ | // my scroll to | ||
+ | $("#main-button").click(function() { | ||
+ | $('html, body').animate({ | ||
+ | scrollTop: $("#main-featurette-row").offset().top - 57 | ||
+ | }, 720); | ||
+ | }); | ||
+ | |||
+ | // my scroll to | ||
+ | $("#ecoli-button").click(function() { | ||
+ | $('html, body').animate({ | ||
+ | scrollTop: $("#first-featurette-row").offset().top - 57 | ||
+ | }, 800); | ||
+ | }); | ||
+ | |||
+ | // my scroll to | ||
+ | $("#project-button").click(function() { | ||
+ | $('html, body').animate({ | ||
+ | scrollTop: $("#team-featurette-row").offset().top - 57 | ||
+ | }, 800); | ||
+ | }); | ||
+ | |||
+ | // my scroll to | ||
+ | $("#team-button").click(function() { | ||
+ | $('html, body').animate({ | ||
+ | scrollTop: $("#blog-featurette-row").offset().top - 57 | ||
+ | }, 800); | ||
+ | }); | ||
+ | |||
+ | |||
+ | $(document).ready(function(){ | ||
+ | // cache the window object | ||
+ | $window = $(window); | ||
+ | |||
+ | $('section[data-type="background"]').each(function(){ | ||
+ | // declare the variable to affect the defined data-type | ||
+ | var $scroll = $(this); | ||
+ | |||
+ | $(window).scroll(function() { | ||
+ | // HTML5 proves useful for helping with creating JS functions! | ||
+ | // also, negative value because we're scrolling upwards | ||
+ | var yPos = -($window.scrollTop() / $scroll.data('speed')); | ||
+ | |||
+ | // background position | ||
+ | var coords = '80% '+ yPos + 'px'; | ||
+ | |||
+ | // move the background | ||
+ | $scroll.css({ backgroundPosition: coords }); | ||
+ | }); // end window scroll | ||
+ | }); // end section function | ||
+ | |||
+ | $("#section-B").hide(); | ||
+ | $("#section-C").hide(); | ||
+ | $("#C-up").hide(); | ||
+ | $("#B-up").hide(); | ||
+ | |||
+ | $("#show-B").click(function(){ | ||
+ | $("#section-B").slideToggle(); | ||
+ | $("#B-up").toggle(); | ||
+ | $("#B-down").toggle(); | ||
+ | }); | ||
+ | |||
+ | $("#show-C").click(function(){ | ||
+ | $("#section-C").slideToggle(); | ||
+ | $("#C-up").toggle(); | ||
+ | $("#C-down").toggle(); | ||
+ | }); | ||
+ | |||
+ | }); // close out script | ||
+ | |||
//NAVBAR STYLE | //NAVBAR STYLE | ||
Line 245: | Line 316: | ||
}); | }); | ||
+ | |||
+ | |||
var windowSize = $(window).height(); | var windowSize = $(window).height(); |
Revision as of 14:15, 2 October 2014
WHAT´S HAPPENING?
STEPS OF PRODUCING E.COLI
1
Knocking out the iron efflux transporter gene FieF and the iron uptake suppressor Fur to increase the total iron level of the cytosol.
2
Sequestering iron in a ferritin protein.
3
Iron crystals are formed and the cell is detoxified.
4
Create crystals by using intensive high-throughput growth medium optimization to discover the best conditions for the formation of magnetic nanoparticles in E. coli.