User:KazutoIKEDA/wiki/change-image.js
From 2009.igem.org
(Difference between revisions)
KazutoIKEDA (Talk | contribs) |
KazutoIKEDA (Talk | contribs) |
||
Line 8: | Line 8: | ||
$(this).fadeTo(600, 1.0); | $(this).fadeTo(600, 1.0); | ||
} | } | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
); | ); | ||
Revision as of 11:48, 21 October 2009
$(document).ready( function() { $("#biomario .thumbnail img") .hover( function(){ $(this).fadeTo(200, 0.8); }, function(){ $(this).fadeTo(600, 1.0); } ); $("#cocktail .thumbnail a") .hover( function(){ $(this).fadeTo(200, 0.8); },function(){ $(this).fadeTo(600, 1.0); } ) .click( function() { $("#cocktail .target img").attr("src", $(this).attr("href")); return false; } ); $("#mandala .thumbnail a") .hover( function(){ $(this).fadeTo(200, 0.8); },function(){ $(this).fadeTo(600, 1.0); } ) .click( function() { $("#mandala .target img").attr("src", $(this).attr("href")); return false; } ); $("#pyramid .thumbnail a") .hover( function(){ $(this).fadeTo(200, 0.8); },function(){ $(this).fadeTo(600, 1.0); } ) .click( function() { $("#pyramid .target img").attr("src", $(this).attr("href")); return false; } ); $("#tomb .thumbnail a") .hover( function(){ $(this).fadeTo(200, 0.8); },function(){ $(this).fadeTo(600, 1.0); } ) .click( function() { $("#tomb .target img").attr("src", $(this).attr("href")); return false; } ); $("#bunny .thumbnail a") .hover( function(){ $(this).fadeTo(200, 0.8); },function(){ $(this).fadeTo(600, 1.0); } ) .click( function() { $("#bunny .target img").attr("src", $(this).attr("href")); return false; } ); }):