npm i --save nativescript-confettiview
- 版本:3.0.3
- GitHub: https://github.com/sean-perkins/nativescript-confettiview
- NPM: https://npmjs.net.cn/package/nativescript-confettiview
- 下载
- 昨天: 14
- 上周: 14
- 上个月: 27
NativeScript ConfettiView 插件
一个用于在 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() |
示例
致谢
- https://github.com/sudeepag/SAConfettiView 为原始 Pod 的贡献
- https://github.com/NathanWalker/SAConfettiView Nathan Walker 对 Pod 和此插件进行的升级