- 小程序cover-view的BUG!!
cover-view设置不了圆,找圆心也找不了,在开发者工具测试的时候是正确的,在真机测试就不行了 附图 [图片] 微信开发者工具: [图片] 真机测试: [图片] 附代码: /**index.wxss**/ .circle-out { margin: 75px auto; position: relative; width: 350px; height: 350px; border-radius: 50%; background-color: #415cab; } .userinfo-avatar { width: 70px; height: 70px; border-radius: 50%; position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto; } .circle-in { position: absolute; width: 330px; height: 330px; border-radius: 50%; top: 0; bottom: 0; left: 0; right: 0; margin: auto; background-color: #fff; } .menu-list { position: absolute; left: 0; top: 0; width: inherit; height: inherit; } .menu-item { position: absolute; left: 0; top: 0; width: 100%; height: 100%; font-weight: 500; } .menu-circle-item { -webkit-transform-origin: 50% 150px; transform-origin: 50% 150px; margin: 0 auto; margin-top: 15px; position: relative; height: 50px; width: 50px; background-color: #77c2fc; text-align: center; border-radius: 50%; } .image-style { height: 25px; width: 25px; color: #f00; margin: 12.5px auto; } .text-style { margin: 5px auto; font-size: 15px; } .menu-circle-text-item { -webkit-transform-origin: 50% 100px; transform-origin: 50% 100px; margin: 0 auto; position: relative; height: 25px; width: auto; text-align: center; }
2017-12-23 - wx.downloadFile 下载图片遇到的问题
当我用IOS系统来下载图片的时候下载下来的图片是jpg后缀的,为什么我一用安卓去下载就变成了htm的后缀呢,大神们求解释
2017-10-25 - wx.writeBLECharacteristicValue 写入数据过长
当要向BLE设备写入数据的时候,要写入的数据长度超过了20个字节,请问要怎么才能的向BLE正确的写入数据呢?
2017-10-14 - 小程序蓝牙BLE数据返回问题
当连接上了了BLE,向BLE写入指令,然后BLE返回的数据超过了20byte,获取不了整体的数据,大神们请问怎么才能获取整体的数据呢?
2017-10-13