- pag动画播放一次就停了,无法循环播放?
尝试了两个设置:setLoop, setRepeatCount均无效。有没有其他的方法能够设置动画无限播放呢? import { PAGInit } from 'libpag-miniprogram'; async onReady() { this.PAG = await PAGInit({ locateFile: (file) => { const filePath = '/utils/' + file; console.log('Trying to load .wasm file from: ', filePath); return filePath; }}); wx.createSelectorQuery() .select('#pag') .node() .exec(async (res) => { const canvas = res[0].node; const buffer = await loadFileByRequest('xxxx'); const pagFile = await this.PAG.PAGFile.load(buffer); const pagView = await this.PAG.PAGView.init(pagFile, canvas); // 这种方式无效 pagView.setLoop(true); pagView.play(); });
12-04 - 禁止小程序页面能够左右滑动?
现有小程序页面中,当长按住页面,左右拖的话,能把整个页面都滑动,然后两边会漏出边。 使用了一些方法,包括 overflow-x:hidden, 使用这个以后,整个页面的上拉也不能使用了。(我希望,只保留上拉操作。其他的都禁用) 请问,这个该怎么设置呢?
12-03 - 如何实现弹框展示客服二维码,用户长按添加好友的功能呢?
[图片] 需要实现上述功能,用户点击留言,此时弹出信息,用户长按二维码,能添加客服二维码。 现在想的时候,代码里头,通过客服的微信id,生成二维码,用户点击二维码后,弹出添加好用的信息。请问这个怎么实现呢?
11-23