Commit 34bb1a86 by qiuren

feat: 直播奖励小窗抖动方法

parent 82c8c011
...@@ -41,6 +41,8 @@ ...@@ -41,6 +41,8 @@
// 41: 修改webview底色 // 41: 修改webview底色
// 42: 振动 // 42: 振动
// 47: 直播奖励小窗抖动
function webAppComm() { function webAppComm() {
this.data = null; this.data = null;
this.langList = [ this.langList = [
...@@ -675,6 +677,17 @@ webAppComm.prototype.savePhoto = function (imgUrl) { ...@@ -675,6 +677,17 @@ webAppComm.prototype.savePhoto = function (imgUrl) {
let obj2 = JSON.stringify(obj); let obj2 = JSON.stringify(obj);
webAppCollaboration(obj2); webAppCollaboration(obj2);
} }
//46: 直播奖励小窗抖动
webAppComm.prototype.liveShakes = function () {
let obj = {
"cid": 47, //将图片存入相册
"data": {
}
}
let obj2 = JSON.stringify(obj);
webAppCollaboration(obj2);
}
//接收客戶端的消息 //接收客戶端的消息
webAppComm.prototype.reMsgFromApp = function (callback) { webAppComm.prototype.reMsgFromApp = function (callback) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment