제목 : 활용예제 : jQuery를 사용하여, 큰 이미지 보기 기능 구현
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="js/jquery-1.3.2-vsdoc2.js" type="text/javascript"></script>
<script type="text/javascript">
// 아래 코드는 모든 이미지 파일의 이미지명을 얻어,
// bigs/ 폴더에 있는 동일한 이미지를 div에 보여준다.
$(document).ready(
function() {
$("#product img").mouseover(
function() {
$("#showImage").show();
var imgSrc = "";
imgSrc = $(this).attr("src");
imgSrc = imgSrc.substr(imgSrc.lastIndexOf("/") + 1);
imgSrc = "<img src='ProductImages/bigs/" + imgSrc + "' />";
$("#showImage").html(imgSrc);
}
);
$("img").mouseout(
function() {
$("#showImage").hide();
}
);
}
);
</script>
</head>
<body>
<div id="product">
<img src="ProductImages/Book-01.jpg" />
<img src="ProductImages/Hardware-01.jpg" />
<img src="ProductImages/Online-01.jpg" />
<div id="showImage" style="border:1px solid red;width:400px;height:400px;">
</div>
</div>
</body>
</html>