- movable-area旋转问题
- 需求的场景描述(希望解决的问题) 希望一个图片既可以缩放 也可以旋转 也可以移动 但是现在两者不可兼得,我写的代码在片段中~ 还请高人指点一二~谢谢~~
2019-01-04 - margin-bottom无效
小程序给一个view设置margin-bottom 模拟器上是好的 但是真机上无效 由于这个view需要一个背景 所有如果把margin-bottom改为padding-bottom 背景会走样 有人遇到 该怎么解决么? 片段 https://developers.weixin.qq.com/s/s2UTjQmg7d4p
2018-12-22 - 小程序如何获取系统字体并设置字体
需要实现以下的需求:[图片] 查了官方文档和baidu都没有资料 有人能帮我一下吗?万分感谢🙏
2018-12-20 - movable-area真机调试和模拟器不一样
- 当前 Bug 的表现(可附上截图) <view> <view class="icon-box"> <i-icon type="return" class="icon" size="28" color="rgb(21,21,21)" /> </view> <movable-area class="cate-area"> <movable-view class="cate-view" direction="horizontal"> <text wx:for="{{category}}" class="{{index==selectedIndex?'highlight':''}}" data-index="{{index}}" bindtap="chooseCategory">{{item}}</text> </movable-view> </movable-area> <view class="icon-box"> <i-icon type="right" class="icon" size="28" color="rgb(21,21,21)" /> </view> </view> .cate-area { width: calc(100% - 96px); height: 30px; display: inline-block; vertical-align: top; overflow: hidden; } .cate-view { width: 130%; height: 100%; } .cate-view text { font-size: 16px; padding: 0px 18px; color: rgb(200, 200, 200); } - 预期表现 真机调试的时候样式走样了,text不知道为什么被挤到下一行了
2018-12-20 - 为什么调用wx.chooseImage没有反应?
- 当前 Bug 的表现(可附上截图) 代码是这样写的: selectImage(){ wx.showActionSheet({ itemList: ['拍照', '相册'], success(res) { console.log(res.tapIndex); let sourcetype = ['camera','album']; wx.chooseImage({ count: 1, sizeType: ['original', 'compressed'], sourceType: sourcetype[res.tapIndex], success(response) { // tempFilePath可以作为img标签的src属性显示图片 const tempFilePaths = response.tempFilePaths console.log(tempFilePaths); } }) }, fail(res) { console.log(res.errMsg) } }) }, 在真机调试中不能唤起相机或者相册 - 预期表现 可以打开系统相册或者相机
2018-12-20 - bindtap函数用data-index传参 时有时无
- 当前 Bug 的表现(可附上截图) 定义了view标签 <view class="footer-item" data-index="0" bindtap='handleChange'/> 和bindtap函数 handleChange(e){ console.log(e.target.dataset.index); } 结果时好时坏: [图片] - 预期表现 应该一直都能显示0
2018-12-19 - margin为什么不能用?
- 当前 Bug 的表现(可附上截图) 设置了wxss:margin:10px; 其他三个面都是有的,但是margin-top却为0 [图片] - 预期表现 margin-top也为10px
2018-12-19 - 为什么<br>标签不换行?
<view class="footer-item"> <image src="{{footerImg}}"></image> <br/> <span>发现</span> </view> image 和span都是行元素 ,为什么<br>标签不换行? 是小程序不支持么?
2018-12-05