Junyangong (Talk | contribs) |
Junyangong (Talk | contribs) |
||
Line 122: | Line 122: | ||
<div style="background-color: #fafdfd"> | <div style="background-color: #fafdfd"> | ||
− | <script> | + | <script//> |
$(document).ready(function() { | $(document).ready(function() { |
Revision as of 16:00, 30 August 2017
Bacterial microcompartments are organelles consisting of a protein shell that encases enzymes and other proteins
PPK is an enzyme that builds up a polyphosphate chain
PPX is an enzyme that breaks down the polyphosphate chain
Tagging PPK into microcompartments causes build up of polyphosphate and prevents polyphosphate degradation by PPX
$(document).ready(function() {
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 410) {
$(".first").removeClass("folded");
} else {
$(".first").addClass(" ");
}
});
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 1010) {
$(".second").removeClass("folded");
} else {
$(".second").addClass(" ");
}
});
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 1610) {
$(".third").removeClass("folded");
} else {
$(".third").addClass(" ");
}
});
})