Line 23: | Line 23: | ||
− | $(".section-cell").hover( | + | $(".small-section-cell").hover( |
function(){ | function(){ | ||
$(this).addClass("active",250); | $(this).addClass("active",250); |
Revision as of 10:12, 5 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(){ }); }); }); }); }); }); });
$(".small-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'}); } ); });