Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.22 KB

README.md

File metadata and controls

44 lines (33 loc) · 1.22 KB

ember-cli-slick-carousel

Code Climate

This addon is drop-in and ready-to-use solution for integrating Slick.js carousel into your Ember app. All features of the carousel are supported.

Installation

ember install ember-cli-slick-carousel

How-to-use

{{#slick-carousel
  class="ember-carousel"
  autoplay=true
  autoplaySpeed=2000
  slidesToShow=1
  slidesToScroll=1
  dots=true
  fade=true}}
  <div><img src="http://placehold.it/300?text=Slide+1"></div>
  <div><img src="http://placehold.it/300?text=Slide+2"></div>
  <div><img src="http://placehold.it/300?text=Slide+3"></div>
{{/slick-carousel}}

Look up Slick settings attributes to customize component behavior. Also, do not forget to customize slider with CSS as you like.

Running

Running Tests

  • ember test
  • ember test --server

Building

  • ember build

For more information on using ember-cli, visit http://www.ember-cli.com/.