Skip to content

million12/Neos.Plugin.SlickCarousel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

M12.SlickCarousel - Slick carousel for Neos CMS

Slick Carousel node type for Neos CMS.

Installation

  • Install this Neos plugin via composer:
composer require m12/neos-nodetype-slickcarousel:dev-master
  • Install Slick code in your site package. Refer to Slick documentation for details, you will need to include slick.js, slick.css and perhaps slick-theme.css to your page.

  • Add the following code to the end of BODY tag:

$(document).ready(function () {
    var slickEl = $('.m12-slickcarousel-slick');
    
    $(slickEl).on('init', function(event, slick) {
        // Support non-standard 'nextOnClick' option:
        if (slick.slickGetOption('nextOnClick')) {
            $(slick.$slider).on('click', function() {
                slick.slickNext();
            });
        }
    });
    
    // Initialise Slick
    $(slickEl).slick();
});

Also see the Pb.Site site package for a complete example of how to install it with npm/gulp.

Author(s)

Licensed under: The MIT License (MIT)

Sponsored by PrototypeBrewery.io - the new prototyping tool for building fully interactive prototypes of your website or web app. Built on top of Neos CMS and Zurb Foundation framework.