Difference between revisions of "Template:Sheffield/scripts/biology"

 
Line 3: Line 3:
  
 
        
 
        
       $(".heading,.final,.brick,.growth,.iron,.siderephores,.reporters").hide();
+
       $(".heading,.final,.brick,.growth,.iron,.siderephores,.reporters,.protocols").hide();
 
              
 
              
 
       $(".heading").show(function(){
 
       $(".heading").show(function(){
Line 12: Line 12:
 
                       $(".siderephores").show(function(){
 
                       $(".siderephores").show(function(){
 
                           $(".reporters").show(function(){
 
                           $(".reporters").show(function(){
 +
                            $(".protocols").show();
 
                           });
 
                           });
 
                       });
 
                       });

Latest revision as of 00:50, 20 October 2016

$(document).ready(function() {


     $(".heading,.final,.brick,.growth,.iron,.siderephores,.reporters,.protocols").hide();
           
     $(".heading").show(function(){
       $(".final").show(function(){
         $(".brick").show(function(){
             $(".growth").show(function(){
                  $(".iron").show(function(){ 
                     $(".siderephores").show(function(){
                         $(".reporters").show(function(){
                            $(".protocols").show();
                         });
                     });
                  });
             });
        });
       });
     });



$(".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'}); } ); });