Skip to content

vyobukhov/slick

 
 

Repository files navigation

slick

the last carousel you'll ever need

Demo

http://kenwheeler.github.io/slick

Options

Option Type Default Description
accessibility boolean true Enables tabbing and arrow key navigation
autoplay boolean false Enables auto play of slides
autoplaySpeed int 3000 Auto play change interval
centerMode boolean false Enables centered view with partial prev/next slides. Use with odd numbered slidesToShow counts.
centerPadding string '50px' Side padding when in center mode. (px or %)
cssEase string 'ease' CSS3 easing
customPaging function n/a Custom paging templates. See source for use example.
dots boolean false Current slide indicator dots
draggable boolean true Enables desktop dragging
easing string 'linear' animate() fallback easing
fade boolean false Enables fade
arrows boolean true Enable Next/Prev arrows
infinite boolean true Infinite looping
lazyLoad string 'ondemand' Accepts 'ondemand' or 'progressive' for lazy load technique
onBeforeChange(this, index) method null Before slide change callback
onAfterChange(this, index) method null After slide change callback
onInit(this) method null When Slick initializes for the first time callback
onReInit(this) method null Every time Slick (re-)initializes callback
pauseOnHover boolean true Pauses autoplay on hover
responsive object null Breakpoint triggered settings
slide string 'div' Slide element query
slidesToShow int 1 # of slides to show at a time
slidesToScroll int 1 # of slides to scroll at a time
speed int 300 Transition speed
swipe boolean true Enables touch swipe
touchMove boolean true Enables slide moving with touch
touchThreshold int 5 Swipe distance threshold
useCSS boolean true Enable/Disable CSS Transitions
vertical boolean false Vertical slide direction

Methods

Method Argument Description
slick() options : object Initializes Slick
unslick() Destroys Slick
slickNext() Triggers next slide
slickPrev() Triggers previous slide
slickPause() Pause Autoplay
slickPlay() Start Autoplay
slickGoTo() index : int Goes to slide by index
slickCurrentSlide() Returns the current slide index
slickAdd() element : html or DOM object, index: int, addBefore: bool Add a slide. If an index is provided, will add at that index, or before if addBefore is set. If no index is provided, add to the end or to the beginning if addBefore is set. Accepts HTML String
slideRemove() index: int, removeBefore: bool Remove slide by index. If removeBefore is set true, remove slide preceding index, or the first slide if no index is specified. If removeBefore is set to false, remove the slide following index, or the last slide if no index is set.
slickFilter() filter : selector or function Filters slides using jQuery .filter syntax
slickUnfilter() Removes applied filter
slickSetOption(option,value,refresh) option : string(option name), value : depends on option, refresh : boolean Sets an option live. Set refresh to true if it is an option that changes the display

Example

Initialize with:

$(element).slick({
  dots: true,
  speed: 500
});

Destroy with:

$(element).unslick();

Dependencies

jQuery 1.7

License

Copyright (c) 2014 Ken Wheeler

Licensed under the MIT license.

Free as in Bacon.

About

the last carousel you'll ever need

Resources

License

Stars

Watchers

Forks

Packages

No packages published