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 🙏

© 2024 – Pkg Stats / Ryan Hefner

ngx-image-slider

v2.0.2

Published

Image slider component for Angular using Angular Material.

Downloads

399

Readme

Material Image Slider

build npm version Live demo

About

This is an image slider component built with Angular and Angular Material. Check out the live demo here.

History and Current Status

This project is a fork and continuation of the now-discontinued @ngmodule/material-carousel by Gabriel Sanches created by Gabriel Sanches. Our current focus is to maintain package security and ensure compatibility with the latest Angular version. We welcome pull requests, including bug fixes, upgrades, and enhancements to the component.

Installation

Install the package using npm: Angular version 17.x.x

npm install --save ngx-image-slider

Angular version 16.x.x

npm install --save [email protected]

Importing the Module

In your Angular application's main module (usually app.module.ts), import the NgxImageSliderModule:

import { NgModule } from "@angular/core";
import { NgxImageSliderModule } from "ngx-image-slider";

// ... other imports

@NgModule({
  // ...
  imports: [
    // ... other modules
    NgxImageSliderModule.forRoot(),
    // ... other modules
  ],
  // ...
})
export class AppModule {}

Usage

The component is named ngx-image-slider. Here's how to use it in your component template:

NgxImageSliderComponent

// Import modules
import { NgModule } from '@angular/core';
import { NgxImageSliderModule } from 'ngx-image-slider';

@NgModule({
  // ...
  imports: [
    // ... others module
    NgxImageSliderModule.forRoot(),
  ],
  // ...
})
export class FeatureModule {} // or it could be AppModule

// Component level
import { OverlayContainer } from '@angular/cdk/overlay';
import { Component, ElementRef, QueryList, ViewChildren } from '@angular/core';
import { ThemePalette } from '@angular/material/core';
import { MatSnackBar } from '@angular/material/snack-bar';
import { NgxImageSliderItemComponent, Orientation } from 'ngx-image-slider';

@Component({
  selector: 'app-example',
  templateUrl: './example.component.html',
  styleUrls: ['./example.component.scss'],
})
export class ExampleComponent {
  images = [
    "https://i0.wp.com/sunrisedaycamp.org/wp-content/uploads/2020/10/placeholder.png?ssl=1&i=1",
    "https://i0.wp.com/sunrisedaycamp.org/wp-content/uploads/2020/10/placeholder.png?ssl=1&i=2",
    "https://i0.wp.com/sunrisedaycamp.org/wp-content/uploads/2020/10/placeholder.png?ssl=1&i=3",
    "https://i0.wp.com/sunrisedaycamp.org/wp-content/uploads/2020/10/placeholder.png?ssl=1&i=4",
    "https://i0.wp.com/sunrisedaycamp.org/wp-content/uploads/2020/10/placeholder.png?ssl=1&i=5"
  ];

  constructor() {}
}
<!-- This is just an example! feel free to set attributes -->
<ngx-image-slider
  timings="250ms ease-in"
  maxWidth="auto"
  [slides]="images.length"
  [hideArrows]="false"
  [useKeyboard]="true"
  [useMouseWheel]="false"
  orientation="ltr"
  proportion="50"
>
  <ngx-image-slider-item
    *ngFor="let image of images"
    [image]="image"
    [hideOverlay]="true"
  ></ngx-image-slider-item>
</ngx-image-slider>

Attributes

| Input | Type | Description | Default value | | --------------------- | ------------------ | -------------------------------------------------------------------------- | ------------------------ | | timings | string | Timings for slide animation. | '250ms ease-in' | | autoplay | boolean | Enable automatic sliding. | true | | interval | number | Autoplay's interval in milliseconds. | 5000 | | loop | boolean | Enable loop through arrows. | true | | hideArrows | boolean | Hide navigation arrows. | false | | hideIndicators | boolean | Hide navigation indicators. | false | | color | ThemePalette | Color palette from Material. | 'accent' | | maxWidth | string | Maximum width. | 'auto' | | maintainAspectRatio | boolean | If true, use proportion to determine height, else slideHeight is used. | true | | proportion | number | Height proportion compared to width. | 25 | | slideHeight | string | Explicit slide height. Used when maintainAspectRatio is false. | '100%' | | slides | number | Maximum amount of displayed slides. | | | useKeyboard | boolean | Enable keyboard navigation. | true | | useMouseWheel | boolean | Enable navigation through mouse wheeling. | false | | orientation | Orientation | Orientation of the sliding panel. | 'ltr' | | svgIconOverrides | SvgIconOverrides | Override default image slider icons with registered SVG icons. | | | ariaLabel | string | Image slider accessible name | 'Sliding image slider' | | lazyLoad | boolean | Lazy load content | false |

Size Considerations and Recommendations

By default, maintainAspectRatio is true, which means height is controlled through proportion.

If you want to have an image slider with constant height (regardless of width), you must set maintainAspectRatio to false.

By default, slideHeight is set to 100%, which will not work if the parent element height isn't defined (i.e. relative heights do not work if the parent height is auto). In that case you can use a fixed CSS unit for slideHeight. You can use any valid css height string like 100px or 25vh.

Play around with the demo here to see how you can use this image slider with or without explicit parent height.

With parent elements that have height:auto

  • use proportion if you want an image slider that resizes responsively (this is the default configuration).
  • use maintainAspectRatio="false" and a non-percentage slideHeight if you want a fixed height image slider.
  • DO NOT use relative (%) values for slideHeight; the image slider will not render.

With parent elements that have a set height

  • use maintainAspectRatio="false" if you want a fixed height image slider that fills the parent element (slideHeight is 100% by default).
  • DO NOT use maintainAspectRatio="false" and slideHeight (unless slideHeight="100%"); the image slider will not

How to develop and test this component

Testing

ng test image-slider --watch false

Running the demo application

ng serve demo