Difference between revisions of "Template:SYSU-Software/JS/Home"

(Created page with "$(function(){ $(".CoDevelopment").hover( function() { $(".leftDescription").animate({opacity:1});; }, function() { $(".left...")
 
(Blanked the page)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
$(function(){
 
    $(".CoDevelopment").hover(
 
        function() {
 
            $(".leftDescription").animate({opacity:1});;
 
        },
 
        function() {
 
            $(".leftDescription").animate({opacity:0});;
 
        }
 
    );
 
  
    $(".coreBank").hover(
 
        function() {
 
            $(".rightDescription").animate({opacity:1});;
 
        },
 
        function() {
 
            $(".rightDescription").animate({opacity:0});;
 
        }
 
    );
 
 
    $(".Design").hover(
 
        function() {
 
            $(".DesignDescription").animate({opacity:1});;
 
        },
 
        function() {
 
            $(".DesignDescription").animate({opacity:0});;
 
        }
 
    );
 
});
 

Latest revision as of 16:12, 18 September 2015