태그♡소스방

태그]이미지 앨범 만들기

탤런트 2007. 1. 25. 15:43
 

[소스]

 

<html>
<head>
<title>이미지 앨범</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<script language=" JavaScript ">

<!--

function mysesangimg(myimg) {
if (myimg==1) my.src="큰 이미지 주소";
if (myimg==2) my.src="큰 이미지 주소";
if (myimg==3) my.src="큰 이미지 주소";
if (myimg==4) my.src="큰 이미지 주소";
}
// -->
</script>
</head>
<body>
<img src="큰 이미지 주소" name="my"><p>
<img style="cursor:hand" onMouseOver="mysesangimg(1)" src="작은 이미지 주소" width="125" height="94">
<img style="cursor:hand" onMouseOver="mysesangimg(2)" src="작은 이미지 주소" width="125" height="94">
<img style="cursor:hand" onMouseOver="mysesangimg(3)" src="작은 이미지 주소" width="125" height="94">
<img style="cursor:hand" onMouseOver="mysesangimg(4)" src="작은 이미지 주소" width="125" height="94">
</body>
</html