<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title> New Document </title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<style type="text/css">
.wraps{overflow:hidden;width:1043px;height:460px;}
.card_fade{position:relative;width:1043px;height:460px;}
#card_left{position:absolute;top:0px;width:600px;height:460px;background-color:red;}
#card_right{position:absolute;top:0px;width:600px;height:460px;background-color:blue;}
.map_fade{position:relative;width:1043px;height:460px;background-color:orange;}
</style>
</head>
<body>
<div class="wraps">
<div class="card_fade">
<div id="card_left" style="left:-600px;">
카드의 왼쪽이 날아옴
</div>
<div id="card_right" style="right:-700px;">
카드의 오른이 날아옴
</div>
</div>
<div class="map_fade" style="display:none;">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){
$('#card_left').animate({ left:'+=600px' },1000);
$('#card_right').animate({ right:'+=700px' },1200);
$('.card_fade').fadeOut(5000);
$('.map_fade').fadeIn(6000);
});
</script>
</body>
</html>
'프론트앤드 개발' 카테고리의 다른 글
최신 CSS Property로 만든 사이트 모음 페이지 (0) | 2023.03.21 |
---|---|
JS BUBBLE SORT (0) | 2014.04.24 |
구글 오늘의 두들!! (0) | 2012.04.09 |
높이에 따라서 세로중앙정렬되게 하는스크립트 (0) | 2011.05.04 |
메타 태그관련 (0) | 2011.03.28 |