User:KazutoIKEDA/wiki/change-image.js

From 2009.igem.org

Note: After saving, you may have to bypass your browser's cache to see the changes. Mozilla / Firefox / Safari: hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (Command-R on a Macintosh); Konqueror: click Reload or press F5; Opera: clear the cache in Tools → Preferences; Internet Explorer: hold Ctrl while clicking Refresh, or press Ctrl-F5.

$(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";
}