<style type="text/css">
.css_test {
height : 420px;
margin-top : 10px;
margin : 0 auto;
overflow : hidden;
text-align : center;
width : 600px;
}
.css_test div {
background : #000;
display : none;
height : 420px;
position : absolute;
width : 600px;
}
.css_test img {
display : none;
width : 100%;
}
</style>
<button type="button"
onclick="j_test()">눌 러 보 세 용 데 헷</button>
<div class="css_test">
<div></div>
<img src="https://t1.daumcdn.net/cfile/tistory/2574603354D74FB429" style="display:inline-block;" />
<img src="https://t1.daumcdn.net/cfile/tistory/263DDC4C550B9B3C0D" />
<img src="https://t1.daumcdn.net/cfile/tistory/24242C3D552F50A61B" />
<img src="https://t1.daumcdn.net/cfile/tistory/21385A4C550B9B3D10" />
<img src="https://t1.daumcdn.net/cfile/tistory/22063B4854D7351334" />
<img src="https://t1.daumcdn.net/cfile/tistory/244ED638555ABF4509" />
<img src="https://t1.daumcdn.net/cfile/tistory/27210A38555ABF4229" />
<img src="https://t1.daumcdn.net/cfile/tistory/223D2D4C550B9B3B0D" />
<img src="https://t1.daumcdn.net/cfile/tistory/2275BF38550B92383D" />
<img src="https://t1.daumcdn.net/cfile/tistory/2730B94D55AC84A92F" />
</div>
효과음 : 입으로 찰칵~ 찰칵~
<script type="text/javascript">
function j_test(){
$('.css_test div').slideDown(100, function(){
$('.css_test').append($('.css_test img:visible').remove());
$('.css_test img:first').show();
$('.css_test img:last').hide();
})
.delay(500).slideUp(100);
}
</script>