Learn about bundled add-ons, how to write and contribute your own, and browse others' third-party extensions.
Swiper is the most modern mobile touch slider with hardware accelerated transitions and amazing native behavior. It is intended to be used in mobile websites, mobile web apps, and mobile native/hybrid apps. Designed mostly for iOS, but also works great on latest Android, Windows Phone 8 and modern Desktop browsers
Name | Version | License | Repository |
---|---|---|---|
Swiper | 3.2.7 | MIT | http://www.idangero.us/swiper/ |
One way to initialize all swiper on a page would be to select them by data-extension
attribute:
Create a basic markup
Multi swiper in single page
Via data attributes
or Via JavaScript
.swiper-slide
에서 컨포넌트 호출시에 Swipe와 Tap 제스츄어가 중복으로 적용됩니다. 충돌을 회피하기 위해 data-toggle
대신 data-component
를 사용합니다.
아래는 RC Swiper 에서 제공하는 Options 항목이며 적용방법은 .swiper-container
div 에
data-
속성을 사용해서 마크업 해주면 된다. (추가적인 Option 항목은 Swiper 공식 페이지에서 제공하는 Swiper Parameter 항목 기준으로 커스터마이징이 필요하다.)
Name | Type | Default | Description |
---|---|---|---|
direction | horizontal | vertical | horizontal | 슬라이더 배열 방향 (가로 or 세로) |
speed | number | 300 | Swipe 동작의 속도를 의미 |
spaceBetween | number | 0 | 슬라이더 간의 간격 |
slidesPerView | number | auto | 1 | 출력 되는 슬라이더 수 |
pagination | boolean | false | 페이징 출력 여부 |
paginationClickable | boolean | true | Pagination 버튼 클릭시 Swipe 이벤트를 발생시킬지 여부 |
pager | boolean | false | Prev & Next 버튼 출력 여부. |
scrollbar | boolean | false | Scrollbar 생성 여부. |
effect | slide | fade | cube | coverflow | flip | slide | 슬라이더 트랜지션 효과 |
loop | boolean | false | loop 적용 여부 |
autoplay | number | - | 값이 없는 경우 autoplay 는 적용되지 않는다. 값이 설정된 경우 설정된 시간(ms)에 맞춰 autoplay 가 적용된다. |
centeredSlides | boolean | false | True 일 경우 활성화된 슬라이더가 중앙에 위치하게 된다. |
한 화면에 출력 되는 슬라이더 아이템 수량을 설정합니다.
Via data attributes
OR Via JavaScript
좌우로 navigation buttons 을 출력합니다.
Name | Description |
---|---|
onInit(swiper) | Callback function, will be executed right after Swiper initialization |
onSlideChangeStart(swiper) | Callback function, will be executed in the beginning of animation to other slide (next or previous). Receives swiper instance as an argument. |
onSlideChangeEnd(swiper) | Callback function, will be executed after animation to other slide (next or previous). Receives slider instance as an argument. |
onSlideChangeEnd
이벤트를 활용하여 특정 슬라이드에서 버튼을 출력 함.