Android:2.3.1及以上 iOS:7.0及以上
为帮助用户更好更快的使用插件,论坛维护了一个示例,示例中包含示例代码供您参考。
# **showAppLause**显示鼓掌动画按钮
showAppLause({params}, callback(ret, err))
rect:
{
x: 0, //(必填项)数字类型;鼓掌按钮左上角的 x 坐标(相对于所属的 Window 或 Frame);默认值:0
y: 0, //(必填项)数字类型;鼓掌按钮左上角的 y 坐标(相对于所属的 Window 或 Frame);默认值:0
w: 60, //(必填项)数字类型;鼓掌按钮的宽度;默认值:60
h: 60 //(必填项)数字类型;鼓掌按钮的高度;默认值:60
}
placeholderImg:
iamges:
isShowNum:
applauseNum:
fixedOn:
fixed:
ret:
{
status : true, //布尔值 true|false
eventType: 'show', //字符串;show,click
applauseNum : 12 //数字型 鼓掌次数
}
err:
{
msg:""
}
var demo = api.require('applause');
demo.showAppLause({
rect : {
x : 100,
y : api.frameHeight - 80,
w : 60,
h : 60
},
placeholderImg : "widget://res/image/applause.png",
iamges : ["widget://res/image/applause_1.png",
"widget://res/image/applause_2.png",
"widget://res/image/applause_3.png",
"widget://res/image/applause_4.png",
"widget://res/image/applause_5.png",
"widget://res/image/applause_6.png",
"widget://res/image/applause_7.png"
],
isShowNum : false,
applauseNum : 0,
fixedOn : api.frameName,
fixed : true
}, function(ret, err) {
api.toast({
msg : JSON.stringify(ret)
});
});
iOS、Android系统
可提供的1.0.0及更高版本
# **clickAppLause**点击鼓掌动画按钮
clickAppLause(callback(ret, err))
ret:
{
status : true, //布尔值 true|false
eventType: 'show', //字符串;show,click
applauseNum : 12 //数字型 鼓掌次数
}
err:
{
msg:""
}
var demo = api.require('applause');
demo.clickAppLause(function(ret, err) {
api.toast({
msg : JSON.stringify(ret)
});
});
iOS、Android系统
可提供的1.0.0及更高版本