- 小程序dom真机上不显示
微信开发工具dom可以显示,但是真机上却不显示 开发工具: [图片] 真机: [图片] 代码html: <view class='bottom'> <view class="input_box"> <input placeholder="评论一下吧" /> <view class="btn_send">发送</view> </view> <view class="zan_box"> <image class='icon_zan' src='../img/icon_zan_on.png'></image> <view class='label_zan'>88</view> </view> </view> 代码css : .bottom { color: #c0c0c0; padding-left: 15px; font-size: 14px; position: fixed; bottom: 0; width: calc(100% - 30px); height: 60px; z-index: 10; } .bottom .input_box { float:left; height:40px; line-height:40px; width:calc(100% - 70px); background-color:#ebebeb; border-radius:20px; padding-left:15px; margin-bottom:10px; color:#808080; font-size:16px; margin-top: 10px; } .bottom input { width:calc(100% - 60px); margin-top:8px; float:left; } .bottom .btn_send { color:white; width:44px; height:28px; margin-top:6px; background-color:#f36e52; text-align:center; line-height:28px; border-radius:13px; float:right; margin-right:10px; font-size:14px; } .bottom .zan_box { width: 40px; float: right; text-align: center; margin-top: 10px; } .bottom .icon_zan { width: 25px; height: 25px; vertical-align: bottom; } .bottom .label_zan { font-size: 12px; } 新手小白,麻烦大神解答一下
2018-09-18 - 小程序 canvas scale(-1,1) 在IOS机型上面无法翻转图片
小程序 canvas方法 scale(-1,1) 在IOS机型上面无法翻转图片,安卓机上是可以的。 麻烦官方大大们看一下。 const ctx = wx.createCanvasContext('photo_canvas'); ctx.translate(picArr[i].left + width * 0.5, 0); ctx.scale(-1, 1) ctx.drawImage(picArr[i].src, width * -0.5, picArr[i].top, width, height); ctx.scale(-1, 1) ctx.translate((picArr[i].left + width * 0.5) * -1, 0); ctx.draw(); 代码大致就是这样的
2018-05-25 - 微信小程序canvas IOS用 scale(-1,1) 将图片翻转无效
微信小程序 canvas scale() 我用 scale 方法把图片 水平翻转 ctx.scale(-1,1) 安卓是可以的,但是IOS无效 官方大大们 帮帮忙啊
2018-05-24 - 建议在 textarea标签 加入 bindtap功能
多行文本输入,需要即时获取文字长度。
2016-12-23