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

Line 1: Line 1:
 
$(document).ready(function(){
 
$(document).ready(function(){
 
        
 
        
           $("#about").hide();
+
           $("#about,#music").hide();
 
            
 
            
 
           $(".left-but").click(function() {
 
           $(".left-but").click(function() {

Revision as of 10:04, 19 October 2016

$(document).ready(function(){

         $("#about,#music").hide();
         
         $(".left-but").click(function() {
                $("#front").fadeOut(function() {
                        $("#about").fadeIn();
                      });
            });
        $(".close-jumbo").click(function() {
                $("#about").fadeOut(function() {
                        $("#front").fadeIn();
                      });
            });
        $(".right-but").click(function() {
                $("#music").fadeIn();
           });
         

});