Skip to content

Instantly share code, notes, and snippets.

@rskull
Created July 26, 2011 14:27
Show Gist options
  • Save rskull/1106886 to your computer and use it in GitHub Desktop.
Save rskull/1106886 to your computer and use it in GitHub Desktop.
カーソルが乗った時画像を切り替える
//画像切り替え
//ImgCng('画像ID','切り替えたい画像名');
//例 : ImgCng('img','image/img2.jpg');
function ImgCng(id,img){
var cng1 = document.getElementById(id);
var cng2 = cng1.src;
cng1.onmouseover = function () {
cng1.src = img;
}
cng1.onmouseout = function () {
cng1.src = cng2;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment