scroll-view里面的定位元素如何能同步滚动

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scroll-view里面的定位元素如何能同步滚动相关的知识,希望对你有一定的参考价值。

参考技术A 本篇文章给大家介绍一下在微信小程序中怎么让scroll-view按照指定位置滚动,无需在写额外的js脚本,就可获得极佳的体验,希望对大家有所帮助!

背景是这样的,微信小程序有一个tab切换页面,tab切换页面有两个内容框,我是使用scroll-view进行制作,然后在切换tab页面时,相应的scroll-view里的滚动条需要置顶处理。【相关学习推荐:小程序开发教程】

我们可以看到官方文档描述scroll-view里有一个scroll-into-view属性,该属性的描述如下

scroll-into-view的值应为某子元素id(id不能以数字开头)。设置哪个方向可滚动,则在哪个方向滚动到该元素

那么我们可以在这个属性里大作文章,只要在scroll-view里放置一个id值为设置的一个自定义值就可以实现切换tab时,对应的内容框滚动条都自动滚到顶部,如下面代码所示,下面代码是我使用Taro小程序框架演示的,原生的也同理。

import Taro from '@Tarojs/Taro'
import View from '@Tarojs/components'
import AtTabs, AtTabsPane from 'Taro-ui'
export default class Index extends Taro.Component
constructor ()
super(...arguments)
this.state =
current: 0,


handleClick (value)
this.setState(
current: value
)

render ()
const tabList = [ title: '标签第一页' , title: '标签第二页' , title: '标签第三页' ]
return (
<AtTabs current=this.state.current tabList=tabList onClick=this.handleClick.bind(this)>
<AtTabsPane current=this.state.current index=0 >
<ScrollView scrollY scrollIntoView='content-0'>
<View id='content-0'></View>
标签页一的内容
</ScrollView>
</AtTabsPane>
<AtTabsPane current=this.state.current index=1 >
<ScrollView scrollY scrollIntoView='content-1'>
<View id='content-1'></View>
标签页二的内容
</ScrollView>
</AtTabsPane>
<AtTabsPane current=this.state.current index=2 >
<ScrollView scrollY scrollIntoView='content-2'>
<View id='content-2'></View>
标签页三的内容
</ScrollView>
</AtTabsPane>
</AtTabs>
)


如第一个tab的scroll-view里放置一个id值为content-0的view,那么在切换tab页时,scroll-view会根据我们设置的scroll-into-view属性定位到子元素的id上,到达滚动条自动置顶的效果

<AtTabsPane current=this.state.current index=0 >
<ScrollView scrollY scrollIntoView='content-0'>
<View id='content-0'></View>
标签页一的内容
</ScrollView>
</AtTabsPane>
同理的,假如需要滚动条滚到最低下,把相应的子元素id放到最低下即可,例如某些聊天界面,需要定位到最新那条

<AtTabsPane current=this.state.current index=0 >
<ScrollView scrollY scrollIntoView='content-0'>
标签页一的内容
<View id='content-0'></View>
</ScrollView>
</AtTabsPane>
更多编程相关知识,请访问:编程视频!!

小程序之 fixed定位下scroll-view左右滚动失效

红框为悬浮 左右可以滑动 效果如下⬇️  

 

悬浮把最外层position:fixed;top:0;这个时候上面的导航就可以悬浮

但是会出现左右滑动不了的情况

这是因为我没给设置宽度

这个时候我们把包着scroll-view的那个view设置宽度为100%就可以了

.hd {
  width: 100%;
  z-index: 1;
  position: fixed;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}

 

以上是关于scroll-view里面的定位元素如何能同步滚动的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序scroll-view 能自动滚动吗

小程序-scroll-view用法及属性

scroll-view组件bindscroll实例应用:自定义滚动条

微信小程序:scroll-view滚动组件

小程序点击列表时当前元素滚动到顶部

小程序:如何让scroll-view包含内容完整滚动