Hello friends, welcome back to my blog. Today in this blog post, I am going to tell you, 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:
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
Hi, how can i change the height of the slider and set the property border-radius?
Hi, you can do that with add some custom styles.
Thanks.
drag not working
Okay I will update you on this. Thanks.
your code is awesome but how can i add multiple images in this carausel, please help me. thanks in advance
I will update it soon, thanks,
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?
Just use same demo code inside your code.