Home Angular 11 Angular 11 – Angular Material Carousel Slider

Angular 11 – Angular Material Carousel Slider

by therichpost
Published: Updated: 8 comments
Angular 11 - Angular Material Carousel Slider

Hello friends, welcome back to my blog. Today in this blog post, I am going to tell you, Angular 11 – Angular Material Carousel Slider.

Material Angular

Angular 11 - Angular Material Carousel Slider
Angular 11 – Angular Material Carousel Slider

Angular 11 came and very soon Angular 12 will come and if you are new then you must check below two links:

  1. Angular11 Basic Tutorials

Friends now I proceed onwards and here is the working code snippet and please use carefully this to avoid the mistakes:

1. Firstly friends we need fresh angular 11 setup and for this we need to run below commands but if you already have angular 11 setup then you can avoid below commands. Secondly we should also have latest node version installed on our system:

npm install -g @angular/cli 

ng new angularmaterial //Create new Angular Project

cd angularmaterial // Go inside the Angular Project Folder

ng serve --open // Run and Open the Angular Project

http://localhost:4200/ // Working Angular Project Url

2. Now friends, here we need to run below commands into our project terminal to install angular material modules into our angular application:

ng add @angular/material

npm i @ngmodule/material-carousel

3. Now friends we just need to add below code into src/app/app.component.html file to get final out on the web browser:

<mat-carousel
timings="250ms ease-in"
[autoplay]="true"
interval="5000"
color="accent"
maxWidth="auto"
proportion="25"
slides="5"
[loop]="true"
[hideArrows]="false"
[hideIndicators]="false"
[useKeyboard]="true"
[useMouseWheel]="false"
orientation="ltr"
>
<mat-carousel-slide
  #matCarouselSlide
  *ngFor="let slide of slides; let i = index"
  [image]="slide.image"
  overlayColor="#00000040"
  [hideOverlay]="false"
></mat-carousel-slide>
</mat-carousel>

4. Now friends we just need to add below code into src/app/app.module.ts file:

...
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { MatCarouselModule } from '@ngmodule/material-carousel';

@NgModule({
 ...
  imports: [
    ...
    BrowserAnimationsModule,
    MatCarouselModule.forRoot()
   
  ]...

5. Now friends we just need to add below code into src/app/app.component.ts file:

...
import { MatCarousel, MatCarouselComponent } from '@ngmodule/material-carousel';

export class AppComponent {
   ...
   // Slider Images
   slides = [{'image': 'https://therichpost.com/wp-content/uploads/2021/02/Vuejs-Fashion-Ecommerce-Template-Free.png'}, {'image': 'https://therichpost.com/wp-content/uploads/2021/02/angular-11-bootstrap-4.5-Ecommerce-Template-Free.png'},{'image': 'https://therichpost.com/wp-content/uploads/2020/10/Angular-10-Learning-Education-Center-Free-Template-1.png'}, {'image': 'https://therichpost.com/wp-content/uploads/2020/11/Reactjs-Easy-Shop-Free-Template-with-Source-Code.png'}, {'image': 'https://therichpost.com/wp-content/uploads/2021/02/angular-11-bootstrap-4.5-Ecommerce-Template-Free.png'}];

  
}

Friends in the end must run ng serve command into your terminal to run the angular 11 project.

Now we are done friends. If you have any kind of query, suggestion and new requirement then feel free to comment below.

Note: Friends, In this post, I just tell the basic setup and things, you can change the code according to your requirements.

I will appreciate that if you will tell your views for this post. Nothing matters if your views will be good or bad because with your views, I will make my next posts more good and helpful.

Jassa

Thanks

You may also like

8 comments

Thomas June 18, 2021 - 8:54 am

Hi, how can i change the height of the slider and set the property border-radius?

Reply
Ajay Malhotra June 18, 2021 - 9:03 am

Hi, you can do that with add some custom styles.
Thanks.

Reply
sivakumar September 8, 2021 - 4:07 am

drag not working

Reply
Ajay Malhotra September 8, 2021 - 4:14 am

Okay I will update you on this. Thanks.

Reply
Kirti November 23, 2021 - 7:31 pm

your code is awesome but how can i add multiple images in this carausel, please help me. thanks in advance

Reply
Ajay Malhotra November 24, 2021 - 8:02 am

I will update it soon, thanks,

Reply
Vlad July 11, 2022 - 3:56 pm

Hey! In Demo I can Scroll to left or right. But when I write in me cod, i can`t it. How in demo u do it, please, tell me?

Reply
therichpost July 11, 2022 - 4:16 pm

Just use same demo code inside your code.

Reply

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.