0.3.0 • Published 6 months ago

ngx-dom-confetti v0.3.0

Weekly downloads
-
License
MIT
Repository
-
Last release
6 months ago

Ngx Dom Confetti

Dom Confetti for Angular

Install

for npm user

npm install ngx-dom-confetti

for yarn user

yarn add ngx-dom-confetti

for pnpm user

pnpm install ngx-dom-confetti

Use

import NgxDomConfettiModule to AppModule

import { NgxDomConfettiModule } from 'ngx-dom-confetti';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    BrowserAnimationsModule,

    NgxDomConfettiModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

use ngx-dom-confetti

component:

<button mat-raised-button color="primary">
  <ngx-dom-confetti>
    Hit Me!
  </ngx-dom-confetti>
</button>

service

@Component({
  selector: 'app-root',
  template: `
     <div class="center">
      <button #btn="matButton" mat-raised-button color="primary" (click)="hitWithService()">
        Hit Me with Service!
      </button>
    </div>
  `,
  styleUrls: ['./app.component.scss']
})
export class AppComponent {

  ngxDomConfettiService: NgxDomConfettiService = inject(NgxDomConfettiService);

  @ViewChild('btn', { read: ElementRef })
  btn!: ElementRef<HTMLButtonElement>;

  hitWithService() {
    const el = this.btn.nativeElement.children.item(0) as HTMLElement;
    if (el) {
      this.ngxDomConfettiService.open(el,this.config);
    }

  }
}

directive

@Component({
  selector: 'app-root',
  template: `
     <div class="center">
      <button mat-raised-button color="primary" (click)="hitWithDirective()">
        Hit Me with Directive!
      </button>
    </div>
  `,
  styleUrls: ['./app.component.scss']
})
export class AppComponent {

  ngxDomConfettiService: NgxDomConfettiService = inject(NgxDomConfettiService);

  @ViewChild(NgxConfettiDirective) confettiDirective!: NgxConfettiDirective;

  hitWithDirective() {
    this.confettiDirective?.launch();
  }
}

license

MIT

0.3.0

6 months ago

0.2.1

10 months ago

0.2.2

9 months ago

0.2.0

1 year ago

0.1.0

1 year ago

0.0.2

1 year ago