책 목록 슬라이드

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

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개

우어어어어어!! 멋지십니다 ㅠㅠ
유용할것 같습니다.
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
14년 전 조회 1,675
14년 전 조회 1,623
14년 전 조회 1,663
14년 전 조회 1,988
14년 전 조회 2,035
14년 전 조회 1,799
14년 전 조회 1,549
14년 전 조회 1,819
14년 전 조회 1,790
14년 전 조회 1,708
14년 전 조회 1,847
14년 전 조회 1,723
14년 전 조회 2,024
14년 전 조회 1,800
14년 전 조회 1,938
14년 전 조회 2,463
14년 전 조회 1,376
14년 전 조회 3,618
14년 전 조회 1,330
14년 전 조회 1,604
14년 전 조회 1,362
14년 전 조회 1,775
14년 전 조회 1,688
14년 전 조회 1,985
14년 전 조회 1,457
14년 전 조회 2,484
14년 전 조회 2,194
14년 전 조회 1,778
14년 전 조회 7,465
14년 전 조회 1,373
14년 전 조회 1,743
14년 전 조회 1,503
14년 전 조회 1,650
14년 전 조회 2,037
14년 전 조회 1,494
14년 전 조회 1,871
14년 전 조회 1,477
14년 전 조회 1,414
14년 전 조회 2,026
14년 전 조회 3,906
14년 전 조회 1,433
14년 전 조회 2,877
14년 전 조회 1,625
14년 전 조회 1,549
14년 전 조회 2,452
14년 전 조회 2,354
14년 전 조회 1,315
14년 전 조회 2,259
14년 전 조회 2,689
14년 전 조회 2,126
14년 전 조회 1,341
14년 전 조회 2,720
14년 전 조회 1,538
14년 전 조회 1,315
14년 전 조회 1,252
14년 전 조회 2,022
14년 전 조회 2,373
14년 전 조회 1,874
14년 전 조회 1,332
14년 전 조회 1,566
14년 전 조회 2,045
14년 전 조회 2,027
14년 전 조회 1,326
14년 전 조회 4,095
14년 전 조회 2,000
14년 전 조회 5,184
14년 전 조회 1,545
14년 전 조회 2,548
14년 전 조회 1,583
14년 전 조회 1,519
14년 전 조회 2,326
14년 전 조회 1,416
14년 전 조회 2,371
14년 전 조회 1,470
14년 전 조회 2,162
14년 전 조회 1,756
14년 전 조회 4,725
14년 전 조회 2,718
14년 전 조회 1,569
14년 전 조회 1,471
14년 전 조회 1,980
14년 전 조회 1,673
14년 전 조회 1,726
14년 전 조회 2,876
14년 전 조회 1,430
14년 전 조회 3,626
14년 전 조회 3,510
14년 전 조회 1,881
14년 전 조회 1,557
14년 전 조회 2,987
14년 전 조회 1,682
14년 전 조회 1,931
14년 전 조회 1,347
14년 전 조회 2,473
14년 전 조회 1,888
14년 전 조회 1,952
14년 전 조회 2,257
14년 전 조회 1,378
14년 전 조회 4,448
14년 전 조회 1,597