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

@nunomeirelesjumia/material-carousel

v17.0.0

Published

Fork of @thouet/material-carousel for Angular 14. Carousel component for Angular using Material Design.

Downloads

32

Readme

Material Carousel

Material2 Carousel

EXTRA NOTICE

This version has been further forked to upgrade it to use Angular 17.

About

This package is a carousel component for Angular using Material Design.

Installing

npm install --save @nunomeirelesjumia/material-carousel

Importing

//...
import { MatCarouselModule } from '@nunomeirelesjumia/material-carousel';

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

Usage

MatCarouselComponent

import { MatCarousel, MatCarouselComponent } from '@nunomeirelesjumia/material-carousel';
<mat-carousel>
  ...
</mat-carousel>

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. | true | | hideIndicators | boolean | Hide navigation indicators. | true | | 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. | false | | useMouseWheel | boolean | Enable navigation through mouse wheeling. | false | | orientation | Orientation | Orientation of the sliding panel. | 'ltr' | | svgIconOverrides | SvgIconOverrides | Override default carousel icons with registered SVG icons. | | | pauseOnHover | boolean | Override default pause on hover. | true |

| Output | Type | Description | | --------------------- | ------------------ | -------------------------------------------------------------------------- | | animationStart | number | It emits the currentIndex when animation starts | | change | number | It emtis the currentIndex when animation ends |

Size Considerations and Recommendations

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

If you want to have a carousel 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 could pass a valid css string for slideHeight. You can use any valid css height string like 100px or 25vh.

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

With parent elements that have height:auto

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

With parent elements that have a set height

  • use maintainAspectRatio="false" if you want a fixed height carousel that fills the parent element (slideHeight is 100% by default).
  • DO NOT use maintainAspectRatio="false" and slideHeight (unless slideHeight="100%"); the carousel will not render correctly because the buttons and indicators will be positioned with respect to the parent.
  • DO NOT use proportion; this will lead to gaps or unwanted overflow.

MatCarouselSlideComponent

import { MatCarouselSlide, MatCarouselSlideComponent } from '@nunomeirelesjumia/material-carousel';
<mat-carousel>
  <mat-carousel-slide>
    ...
  </mat-carousel-slide>
</mat-carousel>

Attributes

| Input | Type | Description | Default value | | -------------- | --------- | ----------------------------- | :-----------: | | image | string | Image displayed in the slide. | | | overlayColor | string | Color of the slide's overlay. | '#00000040' | | hideOverlay | boolean | Toggle overlay on/off. | false | | disabled | boolean | Skip slide when navigating. | false |

Contributing

How to help

How to develop and test

Testing

ng test carousel --watch false

Running the demo application

ng serve demo --source-map