# likeAnimation ^7.8
礼花动效
# 请求参数
Prop | Type | Required | Default | Comment |
---|---|---|---|---|
offsetTop | Number | N | N/A | 动效距离顶部距离 安卓特有, 如 20 |
playStatus | Number | Y | N/A | 1:开始播放; 0:结束播放; |
isClick | Number | N | 0 | 1 单次播放; 0:连续播放; |
# 接口调用示例
const params = {
offsetTop: 20,
playStatus: 1,
isClick: 1,
};
this.$bridge
.likeAnimation(params)
.then((res) => {
this.$alert(res);
})
.catch((err) => {
this.$toast(err);
});
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
# 接口返回示例
N / A;
1