- 华为手机使用canvas.getContext('2d')真机黑屏
var canvas = wx.createCanvas(); var context = canvas.getContext('2d'); context.fillStyle = '#1aad19' context.fillRect(0,0,100,200); 在game.js文件中输入这些,电脑上可以显示,真机黑屏不能显示。手机型号:POT-AL100,华为手机麦芒8.
2020-07-01 - canvas.requestAnimationFrame 真机为啥不能立即取消动画?
canvas.requestAnimationFrame 真机为啥不能立即取消动画?
2020-06-19 - 审核不通过后,没有申述页面出现?
这个小程序,审核不通过,但是没有申述页面出现。怎样申述?
2020-03-14 - <scroll-view> 中的<view>使用margin-right:20rpx;无效?
<scroll-view> <view style="margin-right:20rpx"> </view> </scroll-view> 和 <scroll-view> <view > </view> </scroll-view> 效果一样?
2019-10-28 - 开发工具(V 1.02.1907300) BUG
点击中间栏 展开或者收缩页面文件时,总是跳来跳去。例如有A,B,C,D,E,F,G,H几个页面是展开的,当我点击收缩A页面的时候,它会收缩了A页面,然后滚动到其它页面,我需要用鼠标滚动回去才能继续收缩B页面,烦死了,真的想骂娘,从来没有遇到过这样的事情。
2019-10-15 - 小程序搜索问题——需要输入全名才能搜索到小程序,以前可以模糊搜索的?
如题!!!
2019-10-13 - 医疗类和医学教育类有什么不一样,怎么涉及到医学教育信息的审核也不通过?
如题!!!
2019-08-26 - 微信群讨厌发小程序怎么办?
微信群讨厌发小程序怎么办? 怎样让群友喜欢我在群里发小程序?
2019-05-21 - 手机上的动画和电脑开发环境中的不一样
- 当前 Bug 的表现(可附上截图) startcanvas4(){ const ctx = wx.createCanvasContext('myCanvas4') ctx.arc(20,30,10,0,2*Math.PI) ctx.moveTo(20,40) ctx.lineTo(20,150) ctx.moveTo(15, 150) ctx.lineTo(25,150) ctx.lineTo(25,340) ctx.lineTo(15,340) ctx.closePath() ctx.stroke() ctx.draw() this.rotateAndScaleThenTranslate() this.rotateAndScale(this.data.value) this.data.value = -this.data.value }, rotateAndScaleThenTranslate() { // 先旋转同时放大,然后平移 this.animation.scale(0.5, 0.5).step() this.animation.translate(10, 40).step({ duration: 1000 }) this.setData({ animationData: this.animation.export() }) }, rotateAndScale(value) { // 旋转同时放大 this.animation.rotate(value).step({ duration: 2000 }) this.setData({ animationData: this.animation.export() }) }, onShow() { const animation = wx.createAnimation({ duration: 1000, timingFunction: 'ease', }) this.animation = animation this.setData({ animationData: animation.export() }) }, <view class="container" animation="{{animationData}}" style="width:375rpx"> <canvas class="canvas-element" canvas-id="myCanvas4" style="background:transparent"> </canvas> </view> <button class="canvas-button" bindtap="startcanvas4" type="primary" >接XXX</button> - 预期表现 在电脑上开发环境中画出来的图形跟随动画一起运动,在手机上画出的图形不跟随动画一起运动。 - 复现路径 - 提供一个最简复现 Demo
2019-05-01 - 云开发数据库,用户不能写,只能读吗?
- 需求的场景描述(希望解决的问题) 小程序用户可以向云开发数据库中写入数据。 - 希望提供的能力 小程序用户可以向云开发数据库中写入数据。现在我可以读写云开发数据库,但是其它小程序用户不能写,自能读。
2019-04-08