jquery 애니메이션 인 스 턴 스, 온라인 미리 보기

http://each.sinaapp.com/born/
<div
			id="div_message"
			style="position: relative; top: 100px; left: -300px; font-size: 15px; color: green; font-weight: bold; text-align: center; z-index: 8; display: none;"
		>
			             !
		</div>

<script
			src="http://code.jquery.com/jquery-1.7.1.min.js"
			type="text/javascript"
		>
</script>

<script type="text/javascript">
jQuery(function($) {
	init();

});

var init = function() {
	$("#div_message").show('slow').animate( {
		left : '+20px',
		'font-size' : '+25px'
	}, 1000);
};
</script>

좋은 웹페이지 즐겨찾기