<머리>
<제목>제목>
<스크립트>
var isopen = false;
var newImg;
var w = 200; //그림크기 200
var h = 200; // 이미지 높이 200
$(document).ready(function(){
$("img").bind("click", function(){
newImg = this;
if (!isopen)
{
isopen = true
$(this).width($(this).width() w)
$(this).height($(this) ).height() h);
moveImg(10, 10);
}
else
{
isopen = false
$(this).width($(this) ).width() - w);
$(this).height($(this).height() - h)
moveImg(-10, -10)
});
});
//移位
i = 0;
function moveImg(left,top)
{
var offset = $(newImg).offset();
$(newImg).offset({ top: offset.top top, left: offset.left left});
if (i == 10)
{
i =0;
반환;
}
setTimeout("moveImg(" left "," top ")", 10);
나는 ;
}
<본문>