로테이터(Rotator) 플러그인
.NET프로그래밍/jQuery 1.3.2 2009. 11. 19. 10:44 |
[Rotator.htm]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>로테이터 플러그인</title>
<style type="text/css">
.divHeight { height:130px; }
</style>
<script src="../../js/jquery-1.3.2-vsdoc2.js" type="text/javascript"></script>
<script src="jquery.rotator.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#rotator1').rotator({ms:3000});
});
</script>
</head>
<body>
<div id="rotator1" style="height: 130px; width: 100px; overflow: hidden; border:1px solid red;">
<div class="divHeight">
<img src="../../ProductImages/thumbs/BOOK-01.jpg" /><br />
좋은 책
</div>
<div>
<img src="../../ProductImages/thumbs/COM-01.jpg" /><br />
좋은 컴퓨터
</div>
</div>
</body>
</html>
-------------------------------------------------------------------------------------
[실행결과]
'.NET프로그래밍 > jQuery 1.3.2' 카테고리의 다른 글
파일업로드 : jQuery + Uploadify + ASP.NET (1) | 2009.11.19 |
---|---|
AutoComplete - 텍스트박스 자동 완성 기능 (0) | 2009.11.19 |
카루셀(Carrousel) 플러그인 (0) | 2009.11.19 |
테이블 예제 - 테이블의 헤더 클릭시 해당 열 정렬 (0) | 2009.11.18 |
테이블 예제 - 짝수행과 홀수행의 배경색 변경 플러그인 (0) | 2009.11.18 |