Difference between revisions of "Team:NKU China/Javascript/main"

(Created page with "$(document).ready(function(){ $("li").click(function(){ $(this).addClass("active").siblings().removeClass("active"); }) $("li").hover( function...")
 
Line 3: Line 3:
 
         $(this).addClass("active").siblings().removeClass("active");
 
         $(this).addClass("active").siblings().removeClass("active");
 
     })
 
     })
 
 
    $("li").hover(
 
        function(){
 
            $(this).find('.row-text').hide();
 
            $(this).find('.row-pict').show();
 
        },
 
        function(){
 
            $(this).find('.row-text').show();
 
            $(this).find('.row-pict').hide();
 
        }
 
            );
 
  
 
});
 
});

Revision as of 11:03, 25 June 2017

$(document).ready(function(){

   $("li").click(function(){
       $(this).addClass("active").siblings().removeClass("active");
   })

});