ngx-flip
TypeScript icon, indicating that this package has built-in type declarations

9.0.0 • Public • Published

Simple Angular based plug and play Flip component

npm version GitHub pull requests GitHub stars GitHub License

now supported Angular 9+

Demo

Install it with npm

npm install ngx-flip --save

Usage

Import the Flip Module in your app.module.ts file

  
  import { FlipModule } from 'ngx-flip';
  // other imports 
  
  @NgModule({
    imports: [
      // other imports 
      FlipModule
    ],
    // ...
  })
  export class AppModule {}

Add selector in template file my-component.html

  <ngx-flip [flip]="flipDiv">
   <div front>Front</div>
   <div back>Back</div>
 </ngx-flip>
 
  Where
  flip : boolean variable => used to flip the front and back div
  <div front>Front</div> => Front div -- add 'front' as attribute to identify as front div
  <div back>Back</div> => Back div -- add 'back' as attribute to identify as back div

License

MIT

Running unit tests

coming soon.

Running end-to-end tests

coming soon.

Further help

Pull request always welcome!!!

Package Sidebar

Install

npm i ngx-flip

Weekly Downloads

519

Version

9.0.0

License

MIT

Unpacked Size

58.3 kB

Total Files

24

Last publish

Collaborators

  • ritsrivastava