이 글에서 문의한 내용에 맞도록 작성했습니다.
jQuery.animate에서 step을 이용하는 부분이 핵심(?)이고,
jQuery UI Effect의 Easing을 바꿔서 실험해보시면 다양한 경험이 가능합니다.
[index.html]
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Book Scroller</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link href="stylesheet.less" media="screen" rel="stylesheet" type="text/less" />
<script src="http://code.jquery.com/jquery-1.7.1.js" type="text/javascript"></script>
<script src="http://jqueryui.com/ui/jquery.effects.core.js" type="text/javascript"></script>
<script src="http://lesscss.org/js/less.js" type="text/javascript"></script>
<script src="http://jashkenas.github.com/coffee-script/extras/coffee-script.js" type="text/javascript"></script>
<script src="application.coffee" type="text/coffeescript"></script>
</head>
<body>
<section id="content">
<div id="books">
<ul>
<li><img src="http://image.yes24.com/momo/TopCate160/MidCate06/15959941.jpg" alt="Book #1" /></li>
<li><img src="http://image.yes24.com/momo/TopCate160/MidCate02/15917878.jpg" alt="Book #2" /></li>
<li><img src="http://image.yes24.com/momo/TopCate152/MidCate08/15174800.jpg" alt="Book #3" /></li>
<li><img src="http://insightbook.springnote.com/pages/8500578/attachments/5594964" alt="Book #4" /></li>
<li><img src="http://insightbook.springnote.com/pages/7906642/attachments/5411872" alt="Book #5" /></li>
<li><img src="http://cfile3.uf.tistory.com/image/197A43364E6022C04F44D9" alt="Book #6" /></li>
<li><img src="http://cfile4.uf.tistory.com/image/14272C394E6022E1247E60" alt="Book #7" /></li>
<li><img src="http://cfile25.uf.tistory.com/image/16693A4D4E363453276921" alt="Book #8" /></li>
<li><img src="http://cfile7.uf.tistory.com/image/1208654B4E0AB1DF1B8309" alt="Book #9" /></li>
<li><img src="http://insightbook.springnote.com/pages/7751314/attachments/5160842" alt="Book #10" /></li>
<li><img src="http://insightbook.springnote.com/pages/7591481/attachments/5007932" alt="Book #11" /></li>
<li><img src="http://cfile26.uf.tistory.com/image/1506AF474DF70B7E10AC86" alt="Book #12" /></li>
<li><img src="http://insightbook.springnote.com/pages/7353367/attachments/4864463" alt="Book #13" /></li>
<li><img src="http://cfile29.uf.tistory.com/image/1506AF474DF70B7D0F3ABB" alt="Book #14" /></li>
<li><img src="http://insightbook.springnote.com/pages/6844495/attachments/4514309" alt="Book #15" /></li>
<li><img src="http://insightbook.springnote.com/pages/6635359/attachments/4364331" alt="Book #16" /></li>
</ul>
</div>
</section>
</body>
</html>
[stylesheet.less]
@itemWidth: 80px;
@itemHeight: 120px;
@linkWidth: 25px;
@linkHeight: 50px;
body {
font-size: 12px;
background: #EEE;
color: #333;
margin: 0;
}
#content {
margin: 10px auto;
padding: 20px;
width: 600px;
background: #FFF;
}
#books {
position: relative;
border: 2px solid #CCC;
ul {
margin: 0;
padding: 0;
list-style-type: none;
overflow: hidden;
}
li {
float: left;
margin: 5px;
width: @itemWidth;
height: @itemHeight;
border: 1px solid #EEE;
img {
width: @itemWidth;
height: @itemHeight;
}
}
a.previous,
a.next {
position: absolute;
top: (@itemHeight - @linkHeight) / 2;
display: block;
width: @linkWidth;
height: @linkHeight;
background-image: url(http://bookdaum.com/slide/images/arrow.gif);
background-repeat: no-repeat;
overflow: hidden;
text-indent: -10000.0em;
}
a.previous {
left: 0;
background-position: 0 0;
&:hover {
background-position: 0 -@linkHeight;
}
}
a.next {
right: 0;
background-position: -@linkWidth 0;
&:hover {
background-position: -@linkWidth -@linkHeight;
}
}
}
[application.coffee]
jQuery.fn.bookScroller = (options) ->
showCount = options.showCount
scrollCount = options.scrollCount
duration = options.duration
container = $(this)
list = container.find('ul')
items = list.find('li')
firstItem = list.find('li:first')
itemWidth = firstItem.outerWidth(true)
itemHeight = firstItem.outerHeight(true)
step = (now, fx) ->
item = $(fx.elem)
if now <= -itemWidth
fx.now += items.length * itemWidth
if now >= (items.length - 1) * itemWidth
fx.now -= items.length * itemWidth
prevLink = $('<a></a>').attr(href: '#').text('Previous').addClass('previous')
.click ->
list.find('li').animate
left: "+=#{itemWidth * scrollCount}px"
,
duration: duration
easing: 'easeOutBounce'
step: step
false
nextLink = $('<a></a>').attr(href: '#').text('Next').addClass('next')
.click ->
list.find('li').animate
left: "-=#{itemWidth * scrollCount}px"
,
duration: duration
easing: 'easeOutBounce'
step: step
false
container
.append(prevLink)
.append(nextLink)
.css
overflow: 'hidden'
width: showCount * itemWidth
height: itemHeight
paddingLeft: prevLink.outerWidth()
paddingRight: nextLink.outerWidth()
list.css
position: 'relative'
overflow: 'hidden'
width: showCount * itemWidth
height: itemHeight
items.each (i, item) ->
$(item).css
position: 'absolute'
top: 0
left: i * itemWidth
$ ->
$('#books').bookScroller
showCount: 5
scrollCount: 5
duration: 800
댓글 2개
13년 전
우어어어어어!! 멋지십니다 ㅠㅠ
13년 전
유용할것 같습니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7730 | 10년 전 | 1309 | ||
| 7729 | 10년 전 | 1145 | ||
| 7728 |
잘살아보자
|
10년 전 | 599 | |
| 7727 |
잘살아보자
|
10년 전 | 496 | |
| 7726 |
잘살아보자
|
10년 전 | 822 | |
| 7725 |
잘살아보자
|
10년 전 | 553 | |
| 7724 |
잘살아보자
|
10년 전 | 466 | |
| 7723 |
잘살아보자
|
10년 전 | 530 | |
| 7722 |
잘살아보자
|
10년 전 | 478 | |
| 7721 |
잘살아보자
|
10년 전 | 507 | |
| 7720 |
잘살아보자
|
10년 전 | 464 | |
| 7719 |
비긴어게인
|
10년 전 | 690 | |
| 7718 |
|
10년 전 | 2537 | |
| 7717 |
잘살아보자
|
10년 전 | 649 | |
| 7716 |
잘살아보자
|
10년 전 | 399 | |
| 7715 |
잘살아보자
|
10년 전 | 429 | |
| 7714 |
잘살아보자
|
10년 전 | 496 | |
| 7713 | 10년 전 | 1785 | ||
| 7712 | 10년 전 | 1715 | ||
| 7711 | 10년 전 | 1102 | ||
| 7710 | 10년 전 | 1401 | ||
| 7709 | 10년 전 | 1518 | ||
| 7708 | 10년 전 | 1460 | ||
| 7707 | 10년 전 | 857 | ||
| 7706 |
별지기천사
|
10년 전 | 569 | |
| 7705 | 10년 전 | 1075 | ||
| 7704 |
ICONdesignstudio
|
10년 전 | 618 | |
| 7703 | 10년 전 | 592 | ||
| 7702 |
|
10년 전 | 725 | |
| 7701 | 10년 전 | 1411 | ||
| 7700 | 10년 전 | 1107 | ||
| 7699 | 10년 전 | 583 | ||
| 7698 | 10년 전 | 1141 | ||
| 7697 | 10년 전 | 5164 | ||
| 7696 | 10년 전 | 656 | ||
| 7695 | 10년 전 | 1689 | ||
| 7694 | 10년 전 | 1058 | ||
| 7693 | 10년 전 | 1556 | ||
| 7692 | 10년 전 | 1298 | ||
| 7691 | 10년 전 | 819 | ||
| 7690 | 10년 전 | 1390 | ||
| 7689 | 10년 전 | 1016 | ||
| 7688 | 10년 전 | 616 | ||
| 7687 |
파랑새1597
|
10년 전 | 592 | |
| 7686 | 10년 전 | 851 | ||
| 7685 | 10년 전 | 1342 | ||
| 7684 | 10년 전 | 799 | ||
| 7683 | 10년 전 | 1097 | ||
| 7682 | 10년 전 | 1014 | ||
| 7681 | 10년 전 | 659 | ||
| 7680 | 10년 전 | 989 | ||
| 7679 | 10년 전 | 506 | ||
| 7678 | 10년 전 | 738 | ||
| 7677 | 10년 전 | 636 | ||
| 7676 |
|
10년 전 | 946 | |
| 7675 |
|
10년 전 | 1176 | |
| 7674 | 10년 전 | 1051 | ||
| 7673 | 10년 전 | 753 | ||
| 7672 | 10년 전 | 1092 | ||
| 7671 | 10년 전 | 890 | ||
| 7670 | 10년 전 | 656 | ||
| 7669 |
mashmellow
|
10년 전 | 1232 | |
| 7668 | 10년 전 | 719 | ||
| 7667 | 10년 전 | 1009 | ||
| 7666 |
senseme
|
10년 전 | 655 | |
| 7665 | 10년 전 | 506 | ||
| 7664 | 10년 전 | 1895 | ||
| 7663 |
mixx애교
|
10년 전 | 984 | |
| 7662 | 10년 전 | 1040 | ||
| 7661 |
hkhkah
|
10년 전 | 789 | |
| 7660 | 10년 전 | 1064 | ||
| 7659 |
커네드커네드
|
10년 전 | 931 | |
| 7658 |
바람돌이팡
|
10년 전 | 674 | |
| 7657 | 10년 전 | 1166 | ||
| 7656 | 10년 전 | 1571 | ||
| 7655 | 10년 전 | 989 | ||
| 7654 |
개발짜증나
|
10년 전 | 856 | |
| 7653 |
네이비칼라
|
10년 전 | 879 | |
| 7652 |
밥먹고합시다
|
10년 전 | 815 | |
| 7651 |
플라이SINJI
|
10년 전 | 1513 | |
| 7650 |
개발짜증나
|
10년 전 | 1417 | |
| 7649 | 10년 전 | 454 | ||
| 7648 |
이미영ㅇㅇ
|
10년 전 | 864 | |
| 7647 | 10년 전 | 437 | ||
| 7646 | 10년 전 | 807 | ||
| 7645 | 10년 전 | 2320 | ||
| 7644 | 10년 전 | 821 | ||
| 7643 |
|
10년 전 | 2874 | |
| 7642 | 10년 전 | 1509 | ||
| 7641 | 10년 전 | 1140 | ||
| 7640 |
개발짜증나
|
10년 전 | 475 | |
| 7639 |
|
10년 전 | 813 | |
| 7638 |
개발짜증나
|
10년 전 | 1134 | |
| 7637 | 10년 전 | 1550 | ||
| 7636 | 10년 전 | 2916 | ||
| 7635 | 10년 전 | 1695 | ||
| 7634 | 10년 전 | 1887 | ||
| 7633 | 10년 전 | 2340 | ||
| 7632 | 10년 전 | 3947 | ||
| 7631 |
|
10년 전 | 1535 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기