小程序开发踩坑:页面窗口定位(相对于浏览器定位)(推荐)
程序员文章站
2023-11-14 13:46:40
开发中我们要做一些类似遮罩层或者页面header固定而页面内容滚动的效果时,往往会使用到:position: fiexd;属性,但是往往会出现绑定在定位元素上的事件无法触发...
开发中我们要做一些类似遮罩层或者页面header固定而页面内容滚动的效果时,往往会使用到:position: fiexd;属性,但是往往会出现绑定在定位元素上的事件无法触发,原因出现在哪里?
经过摸索,终于找到答案:元素定位之后, z-index的值默认还是0,又因为定位而导致元素脱离了原来的文档流(page页面层),所以,定位元素相对于用户来说,虽然看得见,但是就像已经“不存在”一样,所以必须设置值:z-index至少大于等于1,将定位元素暴露给用户,这样才能触发绑定在元素之上的事件。
<view class="pagehead"> <view class="hedtop"> <view class="headtab"> <view class="tablab">违章条数</view> <view class="tabbody">6</view> </view> <view class="headtab"> <view class="tablab">罚款金额</view> <view class="tabbody">1200</view> </view> <view class="headtab"> <view class="tablab">违章扣分</view> <view class="tabbody">12</view> </view> </view> <view class="headbot"> <view class="hedbtntab {{currenttab==0 ? 'activenav':''}}" data-current="0" bindtap="swichnav">全部</view> <view class="hedbtntab {{currenttab==1 ? 'activenav':''}}" data-current="1" bindtap="swichnav">可办理</view> <view class="hedbtntab {{currenttab==2 ? 'activenav':''}}" data-current="2" bindtap="swichnav">扣车主分</view> </view>
/*--页面fixed定位层--*/ .pagehead{ position: fixed; top: 0; width:100%; background-color:#fff; z-index: 10; }
以上所述是小编给大家介绍的小程序开发页面窗口定位详解整合,希望对大家有所帮助
下一篇: 微信小程序实现单列下拉菜单效果