canvas中的cover-view,position: fixed有问题
想要实现的是canvas中放置两个按钮,canvas高度大于屏幕,所以想把这两个按钮固定在底部。
canvas中的cover-view添加position: fixed的时候出来的效果是和普通标签的position: absolute效果是一样的。
1 回复
<cover-view class=“buttons” style=“position:absolute; left:0px; top:{{ canvasStyleH }}px”>
<cover-view class=“btn {{ src != ‘’ ? ‘can-sign’ : ‘’ }}” bindtap=“mergeImg”>确认提交</cover-view>
<cover-view class=“btn” bindtap=“openSign”>签署姓名</cover-view>
</cover-view>
暂时已经解决,position: fixed不起作用的情况下,通过计算页面内容高度,换成position: absolute; top: {{
canvasStyleH
}};
真机上测了暂时没出现问题。