(Created page with "$(document).ready(function() { $(".biology,.modelling,.heading,.device,.PP").hide(); $(".heading").show(function(){ $(".final").show...") |
|||
Line 3: | Line 3: | ||
− | $(". | + | $(".heading,.final,.brick,.growth,.iron,.siderephores,.reporters").hide(); |
$(".heading").show(function(){ | $(".heading").show(function(){ |
Revision as of 18:42, 4 October 2016
$(document).ready(function() {
$(".heading,.final,.brick,.growth,.iron,.siderephores,.reporters").hide(); $(".heading").show(function(){ $(".final").show(function(){ $(".brick").show(function(){ $(".growth").show(function(){ $(".iron").show(function(){ $(".siderephores").show(function(){ $(".reporters").show(function(){ }); }); }); }); });
$(".section-cell").hover(
function(){
$(this).addClass("active",250);
},
function(){
$(this).removeClass("active",250);
}
);
$(".backToTop").click(function() { $("html, body").animate({ scrollTop: 0 }, "slow"); return false; });
$(".backToTop").hover( function(){ $(this).animate({height: '120px'}); }, function(){ $(this).animate({height: '100px'}); } ); });