<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript" src="../jquery-1.7.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#divLayer").toggle(function(){
//$(this).animate({width:500, height:500, opacity:0.3}, 1000);//시간을 1초로 지정
$(this).animate({width:500, height:500, opacity:0.3}, "show");//opacity는 투명도 , show - 600
}, function(){
//$(this).animate({width:100, height:100, opacity:1}, 1000);
$(this).animate({width:100, height:100, opacity:1}, "fast");// fast - 200
});
});
</script>
<style type="text/css">
div#divLayer{
margin:10px;
width:100px;
height:100px;
background:blue;
}
</style>
</head>
<body>
<div id="divLayer">
A
</div>
</body>
</html>