User:KazutoIKEDA/wiki/change-image.js
From 2009.igem.org
(Difference between revisions)
KazutoIKEDA (Talk | contribs) |
KazutoIKEDA (Talk | contribs) |
||
Line 14: | Line 14: | ||
function showimg1(val){ | function showimg1(val){ | ||
- | document. | + | if(val==1){ |
- | document. | + | document.obj1.src = "https://static.igem.org/mediawiki/2009/2/2c/Mandala1.jpg"; |
- | document. | + | }else if(val==2){ |
- | document. | + | document.obj1.src = "https://static.igem.org/mediawiki/2009/a/af/Mandala2.jpg"; |
- | document. | + | }else if(val==3){ |
- | document. | + | document.obj1.src = "https://static.igem.org/mediawiki/2009/7/74/Mandala3.jpg"; |
+ | }else if(val==4){ | ||
+ | document.obj1.src = "https://static.igem.org/mediawiki/2009/e/e8/Mandala4.jpg"; | ||
+ | }else if(val==5){ | ||
+ | document.obj1.src = "https://static.igem.org/mediawiki/2009/6/61/Mandala5.jpg"; | ||
+ | }else if(val==6){ | ||
+ | document.obj1.src = "https://static.igem.org/mediawiki/2009/e/e0/Mandala6.jpg"; | ||
+ | } | ||
} | } | ||
Revision as of 20:13, 21 October 2009
$(document).ready( function() { $("#mandala .thumbnail img") .hover( function(){// マウスオーバー時 $(this).fadeTo(200, 0.7); }, function(){// マウスアウト時 $(this).fadeTo(500, 1.0); } ) }); function showimg1(val){ if(val==1){ document.obj1.src = "https://static.igem.org/mediawiki/2009/2/2c/Mandala1.jpg"; }else if(val==2){ document.obj1.src = "https://static.igem.org/mediawiki/2009/a/af/Mandala2.jpg"; }else if(val==3){ document.obj1.src = "https://static.igem.org/mediawiki/2009/7/74/Mandala3.jpg"; }else if(val==4){ document.obj1.src = "https://static.igem.org/mediawiki/2009/e/e8/Mandala4.jpg"; }else if(val==5){ document.obj1.src = "https://static.igem.org/mediawiki/2009/6/61/Mandala5.jpg"; }else if(val==6){ document.obj1.src = "https://static.igem.org/mediawiki/2009/e/e0/Mandala6.jpg"; } } function showimg2(){ document.obj.src = "画像2のURL"; } function showimg3(){ document.obj.src = "画像3のURL"; }