NativeScript ConfettiView
Confetti Views 的 NativeScript 插件。
npm i --save nativescript-confettiview

NativeScript ConfettiView 插件

npm npm

一个用于在 iOS 和 Android 上创建动画 Confetti 视图的 NativeScript 插件。

入门指南

  • npm install nativescript-confettiview
  • ConfettiView 导入您的页面并开始 Confetti!
import {Observable} from 'data/observable';
import {ConfettiView} from 'nativescript-confettiview';

export class HelloWorldModel extends Observable {

private confettiView: any;

constructor() {
super();
this.confettiView = new ConfettiView();
this.confettiView.startConfetti();
}

public stopConfetti() {
this.confettiView.stopConfetti();
}

public startConfetti() {
this.confettiView.startConfetti();
}

}

注意:在首次运行时,您可能会在控制台中看到有关不正确的本地文件路径的错误日志。让安装完成,您将注意到 package.json 将反映您本地文件路径到该插件。

可用函数

调用签名 默认值
intensity(number) 0.5
colors(array) UIColor[]
startConfetti()
stopConfetti()

示例

Image

致谢

  • https://github.com/sudeepag/SAConfettiView 为原始 Pod 的贡献
  • https://github.com/NathanWalker/SAConfettiView Nathan Walker 对 Pod 和此插件进行的升级