1. 程式人生 > >釘釘E應用寫回到頂部和滾動後元素固定定位在可視區域頂部

釘釘E應用寫回到頂部和滾動後元素固定定位在可視區域頂部

index.axml

<view class="{{class}}" hidden="{{isShow}}"> <input class="examSearch" onInput="examSearch" onSubmit="examSearch" type="text" placeholder="考試搜尋"/> </view>

index.js

Page({ data:{ class:'', }, // 滾動定位 onPageScroll({ scrollTop }) { this.setData({ scrollTop: scrollTop }); if (scrollTop >= 45){ this.setData({ class:"fixed" }) } else { this.setData({ class:"" }) } }, })

index.acss

.fixed{ position: fixed; top: 0; left: 0; right: 0; z-index: 999; background-color: white; border-bottom: 2rpx solid #ddd; }