使用scroll-view标签
scroll-top
页面
1 | <scroll-view show-scrollbar="false" scroll-y="true" :scroll-top="scrollTop" scroll-with-animation="true"> |
数据
1 | data(){ |
方法
1 | this.scrollTop = 300; |
scroll-into-view
页面
1 | <scroll-view scroll-y="true" scroll-with-animation="true" :scroll-into-view="targetViewId"> |
数据
1 | data(){ |
方法
1 | this.targetViewId= 'scroll' + item.id; |
使用uni.pageScrollTo
1 | <view class="left-box" > |
JS
1 | uni.pageScrollTo({ |
滚动到底部
页面
1 | <scroll-view :style="{height:scrollViewHeight+'px'}" :scroll-y="true" :scroll-top="scrollTop" :scroll-with-animation="true"> |
JS
1 | export default { |
标签与滚动区联动
1 | <template> |
横向滚动的标签条
1 | <template> |