18.0.1 • Published 12 months ago

@ea-controls/slidder v18.0.1

Weekly downloads
-
License
-
Repository
-
Last release
12 months ago

Slidder

The Slidder component allows users to create a carousel with customizable content.

Demo

Check out the demo on StackBlitz: Demo

Installation

npm i @ea-controls/slidder

Instructions

Modules

Import SlidderComponent and SlidderItemDirective from @ea-controls/slidder in your TypeScript file:

import { SlidderComponent, SlidderItemDirective } from "@ea-controls/slidder";

Usage

In Component A, define the Slidder with customizable content:

<div ea-slidder style="width: 100%; height: 300px;">
    <div class="bg-image1" *ea-slidder-item>Content in my slide</div>
    <div class="bg-image2" *ea-slidder-item></div>
    <div class="bg-image3" *ea-slidder-item></div>
</div>

Add corresponding CSS classes for background images:

.bg-image1 { background-image: url("https://letsenhance.io/static/8f5e523ee6b2479e26ecc91b9c25261e/1015f/MainAfter.jpg"); }
.bg-image2 { background-image: url("https://media.istockphoto.com/id/1489732075/photo/dumpy-tree-frog-sitting-on-branch.jpg?b=1&s=170667a&w=0&k=20&c=sqzeuxnDiu97GcMl3H-ZL0cmYdyuxH5MIcfVg3zz83I="); }
.bg-image3 { background-image: url("https://cdn.create.vista.com/api/media/small/7201773/stock-photo-green-frog"); }

Options

PropertyDescriptionValues
intervalTime in ms to change slidersnumber
showIndicatorShow/Hide indicator of current slide itemboolean
showNavigationShow/Hide navigation arrowsboolean
18.0.1

12 months ago

0.0.3

12 months ago

0.0.2

1 year ago

0.0.1

1 year ago