How to use Owl Carousel In Angular 11?
I will explain step by step tutorial angular 11 owl carousel example. We will look at example of angular 11 owl-carousel example. i would like to share with you angular 11 owl slider example. you'll learn angular 11 owl carousel example.
ngx-owl-carousel-o package provide to adding owl slider to your angular project. here we will see owl carousel simple example with preview:
Preview:
Step 1: Create New App
You can easily create your angular app using bellow command:
ng new myNewApp
Step 2: Install npm Package
Now in this step, we need to just install jquery and ngx-owl-carousel-o in our angular application. so let's add as like bellow:
npm install jquery --save
npm install ngx-owl-carousel-o
Step 3: Import CarouselModule
we will import CarouselModule module as like bellow code:
src/app/app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { CarouselModule } from 'ngx-owl-carousel-o';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
CarouselModule,
BrowserAnimationsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
now we also need to import js and css into our angular.json file. do it as like bellow:
angular.json
...
"styles": [
"node_modules/ngx-owl-carousel-o/lib/styles/prebuilt-themes/owl.carousel.min.css",
"node_modules/ngx-owl-carousel-o/lib/styles/prebuilt-themes/owl.theme.default.min.css",
],
"scripts": [
"node_modules/jquery/dist/jquery.min.js",
]
....
Step 4: Update Ts File
here, we need to update ts file as like bellow:
src/app/app.component.ts
import { Component } from '@angular/core';
import { OwlOptions } from 'ngx-owl-carousel-o';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'ng-carousel-demo';
customOptions: OwlOptions = {
loop: true,
mouseDrag: false,
touchDrag: false,
pullDrag: false,
dots: false,
navSpeed: 700,
navText: ['', ''],
responsive: {
0: {
items: 1
},
400: {
items: 2
},
740: {
items: 3
},
940: {
items: 4
}
},
nav: true
}
slides = [
{id: 1, img: "https://dummyimage.com/350x150/423b42/fff"},
{id: 2, img: "https://dummyimage.com/350x150/2a2b7a/fff"},
{id: 3, img: "https://dummyimage.com/350x150/1a2b7a/fff"},
{id: 4, img: "https://dummyimage.com/350x150/7a2b7a/fff"},
{id: 5, img: "https://dummyimage.com/350x150/9a2b7a/fff"},
{id: 6, img: "https://dummyimage.com/350x150/5a2b7a/fff"},
{id: 6, img: "https://dummyimage.com/350x150/4a2b7a/fff"}
];
}
Step 5: Update HTML File
here, we need to update html file as like bellow code:
src/app/app.component.html
<h1>Angular Owl Carousel Integration Tutorial - ItSolutionStuff.com</h1>
<owl-carousel-o [options]="customOptions">
<ng-container *ngFor="let slide of slides">
<ng-template carouselSlide [id]="slide.id">
<img [src]="slide.img" >
</ng-template>
</ng-container>
</owl-carousel-o>
Now you can run by bellow command:
ng serve
now you can check it.
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Angular 11 Line Chart using ng2-charts Example
- Angular 11 Material Datepicker Example
- Angular 11 Bootstrap 4 Modal Example
- How to Create Routing Module in Angular 11?
- PDF Viewer in Angular 11/10 Example
- Angular 11 File Upload Example
- Angular 11 Http Client Service Example
- Angular 11 CRUD Application Example
- Angular 11 Add Bootstrap Example
- Angular 11/10 Copy to Clipboard using ngx-clipboard