아

책 목록 슬라이드

· 2012-02-22 (수) 09:17:39 · 3613 · 2
이 글에서 문의한 내용에 맞도록 작성했습니다.

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개

2012-02-23 (목) 05:10:16
우어어어어어!! 멋지십니다 ㅠㅠ
2012-02-29 (수) 21:58:24
유용할것 같습니다.
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
12-03-19 조회 3,338
12-03-16 조회 4,011
12-03-14 조회 3,875
12-03-13 조회 3,501
12-03-13 조회 4,298
12-03-12 조회 5,423
12-03-12 조회 1만
12-03-08 조회 5,900
12-03-06 조회 1.1만
12-03-06 조회 3,676
12-03-06 조회 6,208
12-03-02 조회 4,986
12-02-29 조회 3,550
12-02-27 조회 3,927
12-02-22 조회 3,614
12-02-20 조회 3,503
12-02-20 조회 6,694
12-02-01 조회 3,186
12-01-30 조회 8,733
12-01-29 조회 3,227
12-01-24 조회 3,373
12-01-21 조회 3,188
12-01-10 조회 3,659
11-12-26 조회 3,548
11-12-23 조회 4,973
11-12-23 조회 4,555
11-12-23 조회 4,138
11-12-23 조회 7,920
11-12-22 조회 3,683
11-12-17 조회 3,615
11-12-12 조회 3,000
11-12-08 조회 7,541
11-12-08 조회 3,406
11-12-07 조회 3,738
11-12-06 조회 5,430
11-12-02 조회 3,362
11-12-01 조회 3,095
11-11-30 조회 6,890
11-11-26 조회 3,818
11-11-24 조회 4,618
11-11-22 조회 2,979
11-11-22 조회 6,613
11-11-18 조회 4,936
11-11-16 조회 3,413
11-11-14 조회 3,432
11-11-12 조회 3,926
11-11-08 조회 3,246
11-11-06 조회 1만
11-11-06 조회 3,819
11-11-03 조회 5,516
11-11-02 조회 5,780
11-11-01 조회 9,301
11-10-19 조회 2,784
11-10-17 조회 2,590
11-10-10 조회 2,535
11-10-07 조회 3,323
11-10-06 조회 3,918
11-10-06 조회 2,469
11-10-02 조회 3,224
11-09-08 조회 4,223
11-09-08 조회 2,541
11-09-07 조회 2,598
11-09-02 조회 2,681
11-09-01 조회 3,612
11-08-28 조회 3,504
11-08-23 조회 3,352
11-08-22 조회 2,770
11-08-22 조회 2,364
11-08-13 조회 2,414
11-08-05 조회 2,867
11-08-03 조회 4,078
11-07-03 조회 2,468
11-06-15 조회 3,195
11-06-15 조회 3,036
11-05-15 조회 2,830
11-05-11 조회 5,564
11-04-12 조회 2,956
11-01-27 조회 3,807
11-01-26 조회 2,602
11-01-26 조회 4,452
11-01-18 조회 2,651
10-11-23 조회 2,721
10-10-24 조회 4,719
10-09-15 조회 4,404
10-09-07 조회 3,372
10-08-27 조회 4,062
10-08-20 조회 6,955
10-07-30 조회 5,629
10-06-30 조회 2,853
10-06-11 조회 4,612
10-06-11 조회 3,309
10-05-15 조회 4,140
10-05-10 조회 2,830
10-03-19 조회 5,396
10-03-05 조회 5,163
10-02-17 조회 5,558
09-11-21 조회 6,911
09-11-09 조회 3,983
09-11-04 조회 6,697
09-10-26 조회 3,841