Web Components Carousel Overview
The Ignite UI for Web Components Carousel is a responsive, lightweight component that provides the most flexible way to create slideshow-like web experience for users who navigate back and forth through a collection of images with text slides, links, and other html elements.
The Web Components Carousel component allows you to use animations, slide transitions, and customization so you can easily tweak the interface and build Web Components custom carousel.
Web Components Carousel Example
The Web Components Carousel demo you see below shows slides containing only images.
Usage
First, you need to install the Ignite UI for Web Components by running the following command:
npm install igniteui-webcomponents
You will then need to import the IgcCarouselComponent, its necessary CSS, and register its module, like so:
import { defineComponents, IgcCarouselComponent } from "igniteui-webcomponents";
import 'igniteui-webcomponents/themes/light/bootstrap.css';
defineComponents(IgcCarouselComponent);
For a complete introduction to the Ignite UI for Web Components, read the Getting Started topic.
Now that you have the Ignite UI for Web Components Carousel imported, you can start with a basic configuration of the IgcCarouselComponent and its slides.
Use the IgcCarouselComponent selector to wrap your slides. The slides may feature any valid html content inside, including other components.
<igc-carousel>
<igc-carousel-slide>
<img src="assets/images/carousel/ignite-ui-indigo-design.png"/>
</igc-carousel-slide>
<igc-carousel-slide>
<img src="assets/images/carousel/slider-image-chart.png"/>
</igc-carousel-slide>
<igc-carousel-slide>
<img src="assets/images/carousel/ignite-ui-charts.png"/>
</igc-carousel-slide>
</igc-carousel>
If you want a slide to be active by default, use the Active attribute:
<igc-carousel>
...
<igc-carousel-slide>
...
</igc-carousel-slide>
<igc-carousel-slide active>
...
</igc-carousel-slide>
</igc-carousel>
[!NOTE] If no active slide is set, the first one will be set by default. If there are multiple active slides on initial rendering or subsequent updates, only the last one will be taken into account.
Examples
Carousel Configuration
By default, the IgcCarouselComponent has its disableLoop property set to false (looping occurs when the first slide comes after the last by navigating using the Next action, or when the last slide comes after the first by using the Previous action). The looping behavior can be disabled by setting the value of the disableLoop property to true.
<igc-carousel disable-loop="true">
...
</igc-carousel>
To keep track of each slide index, the carousel has indicators that are positioned at the end of the carousel by default. In order to change this behavior, use the indicatorsOrientation property and assign it to start.
<igc-carousel indicators-orientation="start">
...
</igc-carousel>
By default, the IgcCarouselComponent displays its navigation buttons and indicators. Use the hideIndicators property to hide the indicators and the hideNavigation property to hide the navigation buttons.
<igc-carousel hide-navigation="true" hide-indicators="true">
...
</igc-carousel>
The IgcCarouselComponent supports vertical mode. Use the vertical property to enable it.
<igc-carousel vertical="true">
...
</igc-carousel>
Custom indicators
To add Web Components custom carousel indicators, use the IgcCarouselIndicatorComponent:
<igc-carousel>
<igc-carousel-indicator>
<span>🤍</span>
<span slot="active">❤️</span>
</igc-carousel-indicator>
<igc-carousel-indicator>
<span>🤍</span>
<span slot="active">❤️</span>
</igc-carousel-indicator>
<igc-carousel-slide>
<img src="assets/images/card/media/the_red_ice_forest.jpg"/>
</igc-carousel-slide>
<igc-carousel-slide>
<img src="assets/images/card/media/yosemite.jpg"/>
</igc-carousel-slide>
</igc-carousel>
The Ignite UI for Web Components Carousel component allows users to use different elements for the active and inactive state of a single indicator. It is mandatory to provide two elements for each slot (empty and active) when declaring an indicator, even if they are the same.
Custom navigation buttons
To achieve this, use the previous-button and next-button slots:
<igc-carousel>
<igc-icon slot="previous-button" name="previous" collection="material"></igc-icon>
<igc-icon slot="next-button" name="next" collection="material"></igc-icon>
...
</igc-carousel>
Slide containing other components
This carousel is going to contain slides with forms and images:
<igc-carousel>
<igc-carousel-slide>
<div>
<img src="assets/images/svg/carousel/SignUp.svg"/>
<form>
<igc-input type="text" placeholder="Username">
<igc-icon slot="prefix" name="person"></igc-icon>
</igc-input>
<igc-input type="password" placeholder="Password">
<igc-icon slot="prefix" name="password"></igc-icon>
</igc-input>
<igc-button type="reset">Sign In</igc-button>
</form>
</div>
</igc-carousel-slide>
<igc-carousel-slide>
<div>
<img src="assets/images/svg/carousel/Route.svg"/>
<form>
<igc-input type="text" placeholder="Search">
<igc-icon slot="prefix" name="search"></igc-icon>
</igc-input>
<igc-button type="reset">Search</igc-button>
</form>
</div>
</igc-carousel-slide>
</igc-carousel>
Demo
Animations
Animated slide transitions provide the end-users a nice experience when interacting with the carousel.
The carousel is configured to use the slide animation by default, but it also supports fade as an alternative animation.
Use the animationType property to change the animation.
<igc-carousel animation-type="fade">
...
</igc-carousel>
Setting none to the animationType property disables the animations.
Demo
The demo below demonstrates the different types of animations, which the carousel supports.
Navigation
Transition and navigation are the most important carousel features.
The navigation in the carousel can be handled by the user through navigation buttons, indicators, keyboard navigation and touch interaction on mobile devices.
Touch gestures
By default, the carousel can be used on any touch-enabled device.
The carousel animations are fully supported on touch devices, which makes the carousel consistent with any platform and great when used in progressive web applications (PWA).
Keyboard navigation
- Navigation buttons
- SPACE or ENTER key - navigates to the next/previous slide.
- Indicators
- 🡐 key - navigates to the previous (next in Right-to-Left mode) slide.
- 🡒 key - navigates to the next (previous in Right-to-Left mode) slide.
- HOME key - navigates to the first (last in Right-to-Left mode) slide.
- END key - navigates to the last (first in Right-to-Left mode) slide.
Automatic transitioning
The IgcCarouselComponent can be easily configured to change the slides automatically, without any user interaction. This way you can create your own slideshow by only setting a transition interval to the interval property, which determines the amount of time in milliseconds between slides transition.
[!NOTE] Hovering the mouse over any carousel content or moving keyboard focus to any of the carousel content pauses automatic transitioning. Automatic transitioning resumes when the mouse moves away from the carousel or when keyboard focus moves out of the carousel content. This can be prevented by setting
disablePauseOnInteractionproperty to true.
<igc-carousel interval="2000" disable-pause-on-interaction="true">
...
</igc-carousel>
Advanced Example
Let's create a fully automated carousel with looping enabled. We will configure the indicators to be a thumbnail representation of each slide.
To achieve this goal, we have to do the following configurations to the carousel:
- enable the
disablePauseOnInteractionproperty - enable the
hideNavigationproperty - enable the
verticalproperty - add transition
interval - add custom
IgcCarouselIndicatorComponentfor each slide
Our carousel will look like this in the template:
<igc-carousel
disable-pause-on-interaction="true"
hide-navigation="true"
vertical="true"
interval="2000"
animation-type="fade"
>
<igc-carousel-indicator>
<img class="blurred" src="assets/images/carousel/WonderfulCoastThumb.png" width="50" height="60"/>
<img slot="active" src="assets/images/carousel/WonderfulCoastThumb.png" width="50" height="60"/>
</igc-carousel-indicator>
<igc-carousel-indicator>
<img class="blurred" src="assets/images/carousel/CulturalDipThumb.png" width="50" height="60"/>
<img slot="active" src="assets/images/carousel/CulturalDipThumb.png" width="50" height="60"/>
</igc-carousel-indicator>
<igc-carousel-indicator>
<img class="blurred" src="assets/images/carousel/GoldenBeachesThumb.png" width="50" height="60"/>
<img slot="active" src="assets/images/carousel/GoldenBeachesThumb.png" width="50" height="60"/>
</igc-carousel-indicator>
<igc-carousel-indicator>
<img class="blurred" src="assets/images/carousel/IslandOfHistoryThumb.png" width="50" height="60"/>
<img slot="active" src="assets/images/carousel/IslandOfHistoryThumb.png" width="50" height="60"/>
</igc-carousel-indicator>
<igc-carousel-indicator>
<img class="blurred" src="assets/images/carousel/AmazingBridgeThumb.png" width="50" height="60"/>
<img slot="active" src="assets/images/carousel/AmazingBridgeThumb.png" width="50" height="60"/>
</igc-carousel-indicator>
<igc-carousel-slide>
<img src="assets/images/carousel/WonderfulCoast.png"/>
</igc-carousel-slide>
<igc-carousel-slide>
<img src="assets/images/carousel/CulturalDip.png"/>
</igc-carousel-slide>
<igc-carousel-slide>
<img src="assets/images/carousel/GoldenBeaches.png"/>
</igc-carousel-slide>
<igc-carousel-slide>
<img src="assets/images/carousel/IslandOfHistory.png"/>
</igc-carousel-slide>
<igc-carousel-slide>
<img src="assets/images/carousel/AmazingBridge.png"/>
</igc-carousel-slide>
</igc-carousel>
These configurations will have the following result:
Accessibility
WAI-ARIA Roles, States, and Properties
- The Carousel base element role is
region- section containing content that is relevant to specific purpose and users will likely want to be able to navigate easily. - Carousel indicators are with role
tab- grouping label providing a mechanism for selecting the tab content that is to be rendered to the user - The element that serves as the container for the set of tabs (carousel indicators) is with role
tablist. - Each slide element is set with role
tabpanel.
ARIA support
Carousel component
- Attributes
- aria-roledescription set to "carousel".
- aria-live - used to set the priority with which screen reader should treat updates to live regions - the possible settings are: off and polite. The default setting is polite and is set to the element that serves as the container for the set of slides. When the
intervaloption is set and the carousel is in playing state, the aria-live attribute would be set to off. - aria-label (navigation buttons) - "Previous slide"/"Next slide".
Slide component
- Attributes
- id - follows the pattern "igc-carousel-slide-${incremented_number}".
- aria-roledescription set to "slide".
- aria-label follows the pattern "${index + 1} of ${total}".
Indicator component
- Attributes
- aria-label follows the pattern "Slide ${index + 1}"
- aria-selected set to true or false based on the active slide.
API References
IgcCarouselComponentIgcCarouselSlideComponentIgcCarouselIndicatorComponentIgcIconComponentIgcInputComponentIgcButtonComponent