npm i --save nativescript-explosionfield
- 版本:1.1.1
- GitHub: https://github.com/bradmartin/nativescript-explosionfield
- NPM: https://npmjs.net.cn/package/nativescript-explosionfield
- 下载量
- 昨天: 0
- 上周: 0
- 上个月: 13
NativeScript-ExplosionField
NativeScript 插件,用于为 Android {N} 应用创建爆炸尘埃效果动画。
ExplosionField - tyrantgit
仅限 Android
安装
npm install nativescript-explosionfield
示例
这个 .gif 无法充分展示动画效果,请观看 YouTube 视频以查看其真正的平滑度。 在 YouTube 上观看
用法
XML
<Page xmlns="http://schemas.nativescript.org/tns.xsd" loaded="pageLoaded">
<StackLayout>
<Button text="Boom" tap="goBoom" />
<Label text="Explode This" tap="goBoom" />
</StackLayout>
</Page>
JS
// require the plugin module
var explosion = require("nativescript-explosionfield");
function goBoom(args) {
// call the *explode* method on the plugin passing in a view
// on tap events in Nativescript this will be args.object.
explosion.explode(args.object);
}
exports.goBoom = goBoom;
API
explode(view)
- 执行动画