dxc-custom-corousel
v0.1.0
Published
## Installation
Downloads
2
Readme
dxc-corousel
Installation
To install this library, run:
$ npm install dxc-corousel --save
Consuming your library
Once you have published your library to npm, you can import your library in any Angular application by running:
$ npm install dxc-corousel
and then from your Angular AppModule
:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
// Import your library
import { CorouselModule } from 'dxc-corousel';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
// Include the module not the component
CorouselModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Once your library is imported, you can use its components, directives and pipes in your Angular application:
<!-- You can now use your library component in app.component.html -->
<dxc-corousel [imgs]="yourVariableContainsPathofImagesToIncludeInCorousel"></dxc-corousel>
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
yourVariableContainsPathofImagesToIncludeInCorousel = [
"https://www.w3schools.com/bootstrap/la.jpg",
"https://www.w3schools.com/bootstrap/chicago.jpg",
"https://www.w3schools.com/bootstrap/ny.jpg"
];
//these are sample images.. you have to give the respective path of the images and number of images can be included is not restricted !!
}
Development
To generate all *.js
, *.d.ts
and *.metadata.json
files:
$ npm run build
To lint all *.ts
files:
$ npm run lint
License
MIT © SUNDARAMOORTHY A.-DXC