slick

Getting started with slick

Remarks#

This section provides an overview of what slick is, and why a developer might want to use it.

It should also mention any large subjects within slick, and link out to the related topics. Since the Documentation for slick is new, you may need to create initial versions of those related topics.

Installation or Setup

Detailed instructions on getting slick set up or installed.

https://kenwheeler.github.io/slick/

Slick Slider is easy to use and to customise. It provides good amount of customisation options including responsive options based on breakpoints.

To get started with slick, it is not that difficult. Just download the js and css files from their website, create your html code and fire the plugin using single line of jQuery as shown below:

HTML:

<div class="your-class">
  <div>your content</div>
  <div>your content</div>
  <div>your content</div>
</div>

jQuery:

$('.single-item').slick();

This will start the slick slider. You can then customise the options for the look that you want to achive.


This modified text is an extract of the original Stack Overflow Documentation created by the contributors and released under CC BY-SA 3.0 This website is not affiliated with Stack Overflow