npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

ngx-tcarousel

v17.0.904

Published

Super Light, Easy-to-Use HTML5 Angular Carousel with RTL Support

Readme

Angular Responsive Carousel (ngx-tcarousel)

Super Light, Easy-to-Use Angular Carousel with RTL Support

The Angular Responsive Carousel (ngx-tcarousel) is a lightweight and flexible carousel component for Angular applications. It’s designed to be simple to integrate, responsive, and compatible with right-to-left (RTL) languages.

Features

  • Lightweight: Minimal footprint for faster loading times.
  • Responsive: Adjusts to different screen sizes and orientations.
  • RTL Support: Works seamlessly with RTL languages.
  • Easy Integration: Simple API for adding a carousel to your project.
  • Customizable: Customize styles, navigation, and behavior.

Demo

Demo

Installation

  1. Install the package via npm:

    npm install @tyeety/ngx-tcarousel

    Replace @tyeety with your GitHub username or organization.

  2. Import the NgxCarouselComponent in your Angular module or standalone component:

    import { Component } from '@angular/core';
    import { NgxCarouselComponent } from '@tyeety/ngx-tcarousel';
        
    @Component({
      selector: 'app-carousel-demo',
      template: `
        <ngx-carousel [itemCount]="carouselItems.length">
          <!-- Add your custom content here -->
          <div *ngFor="let item of carouselItems" class="custom-class">
            Title: {{item.title}}
            <img [src]="item.imageUrl" />
          </div>
        </ngx-carousel>
      `,
    })
    export class CarouselDemoComponent {
      carouselItems = [
        { imageUrl: 'assets/slide1.jpg', title: 'Welcome to ngx-tcarousel!' },
        { imageUrl: 'assets/slide2.jpg', title: 'Easy to use and customize.' },
        // Add more items as needed
      ];
    }
  3. Customize the carousel by adjusting styles, navigation, and other options.

Inputs

  • itemCount: Mandatory. The total number of items in the carousel.
  • itemsPerPage: Optional (default: 1). Number of items displayed per page.
  • interval: Optional (default: 0). Time between each item for auto slide (set to 0 to disable auto slide).
  • gap: Optional (default: 0). Used in CSS flex to set the gap between items.
  • freezePeriod: Optional (default: 5000). If the user changes a slide, auto slide freezes for this period (in milliseconds).
  • showHandles: Optional (default: false). Visibility of next and previous buttons.
  • showIndicators: Optional (default: false). Visibility of indicators.
  • mainColor: Optional (default: '#C7A867'). Color of active indicator, timer and nav buttons borders.
  • secondColor: Optional (default: 'black'). Color of inactive indicators borders.
  • shadowMode: Optional (default: false). Enable it, if you want to view inactive slides partialy.
  • shadowDivisor: Optional (default: 2). Divide scroll movement.
  • startIndex: Optional (default: 0). Start index!

Styling

You can style the carousel using CSS or SCSS. Customize the appearance to match your project’s design.

Version

Each version of this component exactly matches with same angular major version number.

License

This project is licensed under the MIT License. Feel free to use, modify, and contribute!