책 목록 슬라이드

이 글에서 문의한 내용에 맞도록 작성했습니다.

jQuery.animate에서 step을 이용하는 부분이 핵심(?)이고,

jQuery UI Effect의 Easing을 바꿔서 실험해보시면 다양한 경험이 가능합니다.



[index.html]

<!DOCTYPE html>
<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://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://cfile7.uf.tistory.com/image/1208654B4E0AB1DF1B8309" alt="Book #9" /></li>
<li><img src="http://cfile26.uf.tistory.com/image/1506AF474DF70B7E10AC86" alt="Book #12" /></li>
<li><img src="http://cfile29.uf.tistory.com/image/1506AF474DF70B7D0F3ABB" alt="Book #14" /></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-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년 전 조회 894
13년 전 조회 872
13년 전 조회 888
13년 전 조회 1,217
13년 전 조회 1,293
13년 전 조회 1,053
13년 전 조회 812
13년 전 조회 1,087
13년 전 조회 1,037
13년 전 조회 965
13년 전 조회 1,066
13년 전 조회 961
13년 전 조회 1,274
13년 전 조회 1,041
13년 전 조회 1,166
13년 전 조회 1,684
13년 전 조회 624
13년 전 조회 2,954
13년 전 조회 653
13년 전 조회 848
13년 전 조회 643
13년 전 조회 1,029
13년 전 조회 958
13년 전 조회 1,223
13년 전 조회 751
13년 전 조회 1,817
13년 전 조회 1,455
13년 전 조회 1,038
13년 전 조회 6,718
13년 전 조회 642
13년 전 조회 1,010
13년 전 조회 851
13년 전 조회 996
13년 전 조회 1,283
13년 전 조회 877
13년 전 조회 1,129
13년 전 조회 720
13년 전 조회 742
13년 전 조회 1,264
13년 전 조회 3,126
13년 전 조회 698
13년 전 조회 2,126
13년 전 조회 902
13년 전 조회 803
13년 전 조회 1,694
13년 전 조회 1,620
13년 전 조회 634
13년 전 조회 1,539
13년 전 조회 1,971
13년 전 조회 1,365
13년 전 조회 622
13년 전 조회 2,035
13년 전 조회 836
13년 전 조회 619
13년 전 조회 586
13년 전 조회 1,304
13년 전 조회 1,688
13년 전 조회 1,159
13년 전 조회 646
13년 전 조회 790
13년 전 조회 1,282
13년 전 조회 1,229
13년 전 조회 571
13년 전 조회 3,372
13년 전 조회 1,228
13년 전 조회 4,394
13년 전 조회 798
13년 전 조회 1,785
13년 전 조회 854
13년 전 조회 767
13년 전 조회 1,671
13년 전 조회 646
13년 전 조회 1,612
13년 전 조회 711
13년 전 조회 1,494
13년 전 조회 1,013
13년 전 조회 4,068
13년 전 조회 2,065
13년 전 조회 897
13년 전 조회 709
13년 전 조회 1,284
13년 전 조회 912
13년 전 조회 1,044
13년 전 조회 2,139
13년 전 조회 791
13년 전 조회 2,841
13년 전 조회 2,835
13년 전 조회 1,098
13년 전 조회 802
13년 전 조회 2,339
13년 전 조회 921
13년 전 조회 1,172
13년 전 조회 704
13년 전 조회 1,828
13년 전 조회 1,121
13년 전 조회 1,177
13년 전 조회 1,521
13년 전 조회 623
13년 전 조회 3,690
13년 전 조회 938
🐛 버그신고