Simple Ember CLI Carousel

1.0.4 · abandoned · verified Wed Apr 22

Ember-cli-carousel is an Ember CLI addon that provided a basic, block-based carousel component for Ember applications. Its last stable release, version 1.0.4, was published in 2016. The package has not received updates or active maintenance for many years, rendering it incompatible with modern Ember.js and Ember CLI versions (which are now in their 4.x and 5.x series). Due to its age and lack of maintenance, it is considered abandoned and should not be used in new projects. At the time of its release, it offered a straightforward way to embed image carousels directly into Ember Handlebars templates, configurable with basic properties like `timeInterval` and `reverse`. Developers seeking carousel functionality in contemporary Ember applications should explore actively maintained alternatives that support current Ember ecosystem standards and practices.

Common errors

Warnings

Install

Imports

Quickstart

Demonstrates the basic usage of the `ember-cli-carousel` component in an Ember Handlebars template, showing how to define carousel items with images and custom content. It also includes the installation command.

<!-- app/templates/application.hbs or any component/route template -->
<div class="my-app-carousel">
  {{#ember-cli-carousel timeInterval=5000 reverse=false as |carousel|}}
    {{#carousel.item}}
      <img src="https://example.com/images/slide1.jpg" alt="First slide image">
      <p>This is the first captivating slide.</p>
    {{/carousel.item}}
    {{#carousel.item}}
      <img src="https://example.com/images/slide2.jpg" alt="Second slide image">
      <p>Here's some content for the second slide.</p>
    {{/carousel.item}}
    {{#carousel.item}}
      <img src="https://example.com/images/slide3.jpg" alt="Third slide image">
      <p>And finally, the third slide with more details.</p>
    {{/carousel.item}}
  {{/ember-cli-carousel}}
</div>

// For installation, run in your Ember CLI project directory:
// ember install ember-cli-carousel

view raw JSON →