msp / slick
Magento 2 wrapper for kenwheeler/slick
Installs: 36 096
Dependents: 1
Suggesters: 0
Security: 0
Stars: 8
Watchers: 11
Forks: 4
Open Issues: 1
Language:CSS
Type:magento2-module
pkg:composer/msp/slick
Requires
README
This module lets you use Slick with Magento 2 throught requirejs
Installation
composer require msp/slick
bin/magento setup:upgrade
Usage
Initialization
You can init the slider with data-mage-init:
<div class="your-class" data-mage-init='{
    "slick": {
      ...
      "autoplay"          :   true,
      ...
    }
}'>
  <div>your content</div>
  <div>your content</div>
  <div>your content</div>
</div>
or with a <script type="text/x-magento-init">:
<div id="your-id" class="your-class">
  <div>your content</div>
  <div>your content</div>
  <div>your content</div>
</div>
<script type="text/x-magento-init">
     {
         "#your-id": {
             "slick": {
                ...
                "autoplay"          :   true,
                ...
             }
         }
     }
 </script>