Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@logo-software/carousel

Package Overview
Dependencies
Maintainers
6
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@logo-software/carousel

A slideshow component for cycling through elements—images or slides of text—like a carousel.

  • 0.3.2
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
6
Weekly downloads
 
Created
Source

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 {
}

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

Keywords

FAQs

Package last updated on 07 Sep 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc