- canvas制作动画使用clearRect会闪屏,怎么处理?
模拟器上还行,安卓和ios都很明显 [图片] const app = getApp() Page({ data: { ctx:{}, top:0 }, onLoad() { wx.createSelectorQuery() .select('#myCanvas') // 在 WXML 中填入的 id .fields({ node: true, size: true }) .exec((res) => { // Canvas 对象 const canvas = res[0].node // 渲染上下文 const ctx = canvas.getContext('2d') this.data.ctx = ctx // ctx.translate(20,50) // ctx.rotate(20 * Math.PI / 180); let i=0 let timeout= setInterval(() => { ctx.clearRect(0,0,res[0].width,res[0].height) // 图片对象 const image = canvas.createImage() // 图片加载完成回调 image.onload = () => { // 将图片绘制到 canvas 上 ctx.drawImage(image, 0, i) } i++ // 设置图片src image.src = 'https://open.weixin.qq.com/zh_CN/htmledition/res/assets/res-design-download/icon64_wx_logo.png' if(i==50){ clearInterval(timeout) } }, 1000/60); }) }, close(){ this.data.ctx.clearRect(0, 0, 750, 200) // this.data.ctx.draw() }, })
2023-10-27 - 公众号平台视频号链接点击不跳转,怎么解决?
公众号平台视频号链接点击不跳转,怎么解决? window.location.href = 视频号链接
2023-07-18 - editor中insertImage设置nowrap无效?
editor中insertImage设置nowrap不换行无效 that.editorCtx.insertImage({ src: e.detail.url, nowrap:true, alt: e.detail.message, width: '30rpx', height: '30rpx', })
2022-08-25 - 想在输入框中展示表情有什么方式?
[图片]
2022-08-17 - button的边框如何渐变加圆角?
button的边框如何渐变加圆角?
2021-11-09 - 移动端h5不在微信内可以获取用户信息吗?
移动端h5不在微信内可以获取用户信息吗
2021-09-26 - 微信公众号网页如何获取手机号?
微信公众号网页可以获取到用户手机号吗?
2021-09-09 - textarea页面不推z怎么办?
页面有两个textarea,上面的点击可以到达textarea,也可以换行,但是下面的不会,设置了cursor-spacing无效 [图片]
2021-03-25 - openLocation需要点击定位按钮才到具体位置,要怎么设置?
openLocation需要点击定位按钮才到具体位置,要怎么设置?
2021-02-07 - 微信小程序授权登录怎么取消?
微信小程序如何退出授权登录,有接口吗?
2021-02-04