πŸ”” Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

touchSlider is a simple, flexible jQuery plugin for creating a responsive, touch-enabled slider which supports any types of html elements.

Carousel Content-slider

Documentation

jquery.touchSlider

  • jQuery 기반의 ν”Œλ¦¬ν‚Ή λ‚΄λΉ„κ²Œμ΄μ…˜ ν”ŒλŸ¬κ·ΈμΈ
  • λ§ˆν¬μ—… μš”μ†Œ 선택에 μ œμ•½μ΄ μ—†μœΌλ©° μ΄ˆλ³΄μžλ„ μ‰½κ²Œ μ‚¬μš©ν•˜λ„λ‘ 섀계
  • CSS Selector에 따라 닀쀑 적용 κ°€λŠ₯
  • PC λΈŒλΌμš°μ €μ—μ„œ λ“œλž˜κ·Έλ‘œ μ‚¬μš©κ°€λŠ₯ (κΈ°λ³Έ μ˜΅μ…˜μœΌλ‘œ 포함 v1.3.0)
  • jQuery 1.7+, IE7+ 지원

Demo

http://dohoons.com/test/flick

μ„€μΉ˜ 방법

<script> νƒœκ·Έλ‘œ μ›ΉνŽ˜μ΄μ§€μ— μΆ”κ°€

<script src="jquery.touchSlider.js"></script>

λ˜λŠ” NPM으둜 μ„€μΉ˜ν•΄μ„œ μ‚¬μš©

$ npm i jquery.touchslider
var $ = require('jquery'); require('jquery.touchslider')($);

κΈ°λ³Έ μ‚¬μš©λ²•

#touchSlider { background:#ccc; position:relative; overflow:hidden; } #touchSlider ul { position:absolute; top:0; left:0; overflow:hidden; } #touchSlider ul li { height:150px; background:#9C9; font-size:14px; color:#fff; }
<div id="touchSlider"> 	<ul> 		<li style="background:#9C9">content 1</li> 		<li style="background:#396">content 2</li> 		<li style="background:#39C">content 3</li> 		<li style="background:#33C">content 4</li> 	</ul> </div>
$("#touchSlider").touchSlider({ 	// ... Options 	page: 2 });

React.jsμ—μ„œ μ‚¬μš©ν•˜κΈ°

Options

Option Name Type Default Description
mode String 'swipe' μŠ¬λΌμ΄λ“œ λͺ¨λ“œ ('swipe' or 'fade')
page Number 1 초기 νŽ˜μ΄μ§€
speed Number 150 νŽ˜μ΄μ§€ λ„˜κΉ€ μ• λ‹ˆλ©”μ΄μ…˜ 속도 (ms)
view Number 1 νŽ˜μ΄μ§€ λ‹Ή μ•„μ΄ν…œ 개수
gap Number 0 μ•„μ΄ν…œ 사이 간격 (pixel)
range Number 0.15 νŽ˜μ΄μ§€ λ„˜κΉ€ νŒμ • λ²”μœ„
roll Boolean true μŠ¬λΌμ΄λ“œ λ„˜κΉ€ μˆœν™˜
resize Boolean true μžλ™ λ¦¬μ‚¬μ΄μ¦ˆ
controls Boolean true prev, next λ²„νŠΌ 생성
paging Boolean true page control 생성
sidePage Boolean false μΈ‘λ©΄ νŽ˜μ΄μ§€ μ‚¬μš©
transition Boolean true CSS Transition μ‚¬μš©
useMouse Boolean true 마우슀 λ“œλž˜κ·Έ μ‚¬μš© μ—¬λΆ€
btn_prev Object null μ‚¬μš©μž prev λ²„νŠΌ (jQuery Objec)
btn_next Object null μ‚¬μš©μž next λ²„νŠΌ (jQuery Objec)
autoplay Object {
enable: false,
pauseHover: true,
addHoverTarget: '',
interval: 3500
}
μžλ™μ›€μ§μž„ κ΄€λ ¨ μ˜΅μ…˜
breakpoints Object null 브레이크 포인트 μ˜΅μ…˜

Method

Name Description
go_page(index) index νŽ˜μ΄μ§€λ‘œ 이동
autoPlay() μžλ™ λ„˜κΉ€ μ‹œμž‘
autoStop() μžλ™ λ„˜κΉ€ 정지
autoPauseToggle() μžλ™ λ„˜κΉ€ μ‹œμž‘/정지 ν† κΈ€

CallBack

Name Description
initComplete μŠ¬λΌμ΄λ”κ°€ μ΄ˆκΈ°ν™”λœ ν›„ μ‹œμž‘
counter μŠ¬λΌμ΄λ”λ₯Ό λ„˜κΈ΄ ν›„ μ‹œμž‘

You May Also Like