- threejs-miniprogram 在真机上加载不了gltf模型
使用threejs-miniprogram 加载gltf模型 在编译器里可以显示,使用编译器预览功能 在手机上加载不了gltf模型 这是编译器里的效果 [图片] 这是手机上的效果 [图片] 真机预览会报错 ReferenceError: atob is not defined
2020-02-03 - threejs-miniprogram 在真机上加载不了gltf模型
使用threejs-miniprogram 加载gltf模型 在编译器里可以显示,使用编译器预览功能 在手机上加载不了gltf模型 并且 手机上不能打开调试工具
2020-01-16 - canvas 在 bindtouchmove 方法中 绘制问题
canvas 在 bindtouchmove 方法中 使用draw方法画线 出现问题 在开发者工具和苹果手机上都没有问题 安卓手机有问题,可以复现出来,左上角的点 有时候会连着画的那个点 正常情况: [图片] 有问题的情况: [图片] <canvas canvas-id="canvas" class="canvas" bindtouchstart="start" bindtouchmove="move" bindtouchend="end" disable-scroll></canvas> sign() { this.setData({ hidden: false }); const ctx = wx.createCanvasContext('canvas') ctx.setLineWidth(3) ctx.setLineJoin('round') ctx.setLineCap('round') ctx.draw() this.setData({ ctx }) }, start({ touches }) { // console.log('start', touches[0].x, touches[0].y) const ctx = this.data.ctx ctx.moveTo(touches[0].x, touches[0].y) }, move({ touches }) { // console.log('move', touches[0].x, touches[0].y) const ctx = this.data.ctx ctx.lineTo(touches[0].x, touches[0].y) ctx.stroke() ctx.draw(true, () => { ctx.moveTo(touches[0].x, touches[0].y) }) },
2019-09-19 - canvas 在 bindtouchmove 方法中 绘制问题
canvas 在 bindtouchmove 方法中 使用draw方法画线 出现问题 在开发者工具和苹果手机上都没有问题 安卓手机有问题,可以复现出来,左上角的点 有时候会连着画的那个点 正常情况: [图片] 有问题的情况: [图片] <canvas canvas-id="canvas" class="canvas" bindtouchstart="start" bindtouchmove="move" bindtouchend="end" disable-scroll></canvas> sign() { this.setData({ hidden: false }); const ctx = wx.createCanvasContext('canvas') ctx.setLineWidth(3) ctx.setLineJoin('round') ctx.setLineCap('round') ctx.draw() this.setData({ ctx }) }, start({ touches }) { // console.log('start', touches[0].x, touches[0].y) const ctx = this.data.ctx ctx.moveTo(touches[0].x, touches[0].y) }, move({ touches }) { // console.log('move', touches[0].x, touches[0].y) const ctx = this.data.ctx ctx.lineTo(touches[0].x, touches[0].y) ctx.stroke() ctx.draw(true, () => { ctx.moveTo(touches[0].x, touches[0].y) }) },
2019-09-16 - scroll-view不能滑动问题
- 当前 Bug 的表现(可附上截图) - 预期表现 - 复现路径 - 提供一个最简复现 Demo 苹果7plus 微信最新版本 scroll-view 不能滑动 好像以前微信版本是可以滑的 更新微信版本后就不能了 其他手机都可以的
2019-03-13 - 开发工具 自带的Git使用报错
[图片] 使用工具自带的git工具就会报错 自己下载的git可以使用
2019-01-30