楼主这个问题解决了吗
scroll-view内嵌套moveable-view为什么没有办法滚动呢?<scroll-view scroll-x="true" scroll-y="true" style="height: 750rpx;width:375px"> <movable-area style="height: 750rpx;width:425px;" scale-area> <movable-view style="height: 750rpx;width:425px;" direction="all" bindchange="onChange" bindscale="onScale" scale scale-min="1" scale-max="4" scale-value="{{scale}}"> <view class="sitbody bg-white"> </view> </movable-view> </movable-area> </scroll-view>
2021-11-09找到了,是基础库的原因,不支持2.14.0 [图片]
wx.getUserProfile is not a function?console.log('getUserProfile', wx.getUserProfile), // getUserProfile undefined console.log('canIUse', wx.canIUse('wx.getUserProfile')) //canIUse false [图片] [图片]
2021-03-05头像被裁剪成这样了 [图片]
clip剪切之后 绘制头像 多了一个角?[图片] 这里多;了一个角是怎么回事啊? 代码: context.arc(80, 70, 30, 0, 2 * Math.PI,false) //画出圆 context.strokeStyle = "#ffe200"; context.clip(); //裁剪上面的圆形 context.drawImage(path1, 50, 40, 60, 60); // 在刚刚裁剪的园上画图 context.draw(); context.restore();
2021-02-26