211007_animate,z-index
DOCTYPE html> Insert title here div.wall { position: absolute; width: 200px; height: 500px; background-image: url("../image/bg2.png"); z-index: 2; } #img1{ position: absolute; left: 140px; top: 100px; width: 150px; height: 200px; z-index: 1; } $(function () { $("#img1").click(function() { //3번째 함수는 너비가 0되면 호출되는 함수 $(this).animate({width: "0px"},'slow',function(){ $(this).animate({width: "150px"}..