User:KazutoIKEDA/wiki/change-image.js
From 2009.igem.org
(Difference between revisions)
KazutoIKEDA (Talk | contribs) |
KazutoIKEDA (Talk | contribs) |
||
Line 9: | Line 9: | ||
} | } | ||
) | ) | ||
- | + | ||
- | + | ||
- | + | ||
}); | }); | ||
+ | |||
+ | function showimg1(){ | ||
+ | document.obj.src = "https://static.igem.org/mediawiki/2009/a/af/Mandala2.jpg"; | ||
+ | } | ||
+ | |||
+ | function showimg2(){ | ||
+ | document.obj.src = "画像2のURL"; | ||
+ | } | ||
+ | |||
+ | function showimg3(){ | ||
+ | document.obj.src = "画像3のURL"; | ||
+ | } |
Revision as of 19:58, 21 October 2009
$(document).ready( function() { $("#mandala .thumbnail img") .hover( function(){// マウスオーバー時 $(this).fadeTo(200, 0.7); }, function(){// マウスアウト時 $(this).fadeTo(500, 1.0); } ) }); function showimg1(){ document.obj.src = "https://static.igem.org/mediawiki/2009/a/af/Mandala2.jpg"; } function showimg2(){ document.obj.src = "画像2のURL"; } function showimg3(){ document.obj.src = "画像3のURL"; }