User:KazutoIKEDA/wiki/change-image.js

From 2009.igem.org

(Difference between revisions)
Line 7: Line 7:
     }
     }
   );
   );
-
});
 
-
 
-
 
-
$(document).ready( function() {
 
-
  $(".funwari")
 
   .hover(  
   .hover(  
     function(){// マウスオーバー時
     function(){// マウスオーバー時
Line 19: Line 14:
       $(this).fadeTo(600, 1.0);
       $(this).fadeTo(600, 1.0);
     }
     }
-
  );
+
  );
});
});

Revision as of 03:42, 20 October 2009

$(document).ready( function() {
  $(".thumbnail img")
   .click(
     function() {
       var changeSrc   = jQuery(this).attr("src");
       $(".target img").attr("src", "https://2009.igem.org/wiki/skins/common/images/wiki.png");
     }
   );
  .hover( 
    function(){// マウスオーバー時
      $(this).fadeTo(200, 0.8);
    },
    function(){// マウスアウト時
      $(this).fadeTo(600, 1.0);
    }
   );
});