小程序锚点定位
发表时间:2020-10-12
发布人:葵宇科技
浏览次数:68
小程序锚点定位
// 1.最外层需要用scroll-view包裹,scroll-view必须给固定高度以及scroll-y
// 2.scroll-into-view(值应为某子元素 id,则滚动到该元素,元素顶部对齐滚动区域顶部)
// 3.给目标容器添加id属性
// 4.滚动后,需要通过onScroll方法清除scroll-into-view的值,用来二次锚点定位
// index.axml
<scroll-view class="index-page" scroll-into-view="{{toView}}" scroll-y>='onScroll'>
<button>="goTask">跳转到task锚点</button>
<view class='task-wrapper' id="task">
</view>
</scroll-view>
// index.js
Page({
data:{
toView: ''
}
})
goTask(){
this.setData({
toView:"task"
})
},
onScroll(){
this.setData({
toView:""
})
}