11.0.0 • Published 2 years ago

@logo-software/carousel v11.0.0

Weekly downloads
-
License
See license in LI...
Repository
-
Last release
2 years ago

Carousel Module

The Carousel module is a component for cycling through elements, like a carousel (slideshow).

Click here for demo

Installation

All public npm packages of Logo Software is at https://www.npmjs.com/~logofe. To install Carousel Module:

$ npm set registry https://registry.npmjs.org/
$ npm install @logo-software/carousel -s

Just import it to your project of @NgModule import section.

@NgModule({
  imports: [CommonModule, CarouselModule],
})
export class AppModule {
}

Carousel Component

The carousel is a slideshow for cycling through a series of content, built with CSS transforms and a bit of JavaScript. It works with a series of images, text, or custom markup. It also includes support for previous/next controls and indicators.

<logo-carousel [count]="1" [arrow]="true" [dots]="true">
  <div class="slider-item" *ngFor="let item of sliderItems">
     {{item.description}}
  </div>
</logo-carousel>

For API details, please visit http://design.logo.com.tr/#/docs/components/components-overview

11.0.0

2 years ago

4.0.0

2 years ago

0.4.0

2 years ago

0.3.5

2 years ago

0.3.4

2 years ago

0.3.3

2 years ago

0.3.2

3 years ago

0.3.1

3 years ago

0.3.0

3 years ago

0.2.2

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.1.0

4 years ago