To install this library, run:
npm install ngx-apf-flipboxbash
$ npm install ngx-apf-flipbox --save
`
Usage
`bash
$ npm install ngx-apf-flipbox
`
and then from your Angular AppModule:
`typescript
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
// Import your library
import { FlipBoxModule } from 'ngx-apf-flipbox';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
// Specify this library as an import
FlipBoxModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
`
Once your library is imported, you can use its components in your Angular application:
`xml
{{title}}
[frontTitle]="frontTitle"
[frontSubTitle]="frontSubTitle"
[frontTitleColor]="'#000'"
[frontSubTitleColor]="'rgba(255,255,255,0.5)'"
[iconCode]="iconCode"
[iconColor]="'#fff'"
[iconCicleColor]="'#fff'"
[backTitle]="backTitle"
[backContent]="backContent"
[backTitleColor]="'rgba(255,255,255,0.5)'"
[backContentColor]="'#000'">
``