我们如何在React Native中设置scrollTo()的速度?

时间:2017-06-29 08:58:26

标签: react-native scrollto

我使用以下方式点击按钮滚动页面:

this.scrollTo({y: height, x: 0, animated: true})

滚动效果很好,但是我想减慢滚动动画的速度。 我们怎么做?

2 个答案:

答案 0 :(得分:0)

在android上,您可以使用smoothScrollTo选项

答案 1 :(得分:0)

这是一个非常简洁的解决方案,它使用scrollview的内容高度来滚动整个视图(安装时)。但是,可以使用相同的技巧(将侦听器添加到动画值)来创建滚动功能,该滚动功能可以在任何给定时刻(到任何给定值)由某个事件触发。


import { useEffect, useRef, useState } from 'react'
import { Animated, Easing, ScrollView } from 'react-native'

const SlowAutoScroller = ({ children }) => {
  const scrollRef = useRef()
  const scrollAnimation = useRef(new Animated.Value(0))
  const [contentHeight, setContentHeight] = useState(0)

  useEffect(() => {
    scrollAnimation.current.addListener((animation) => {
      scrollRef.current &&
        scrollRef.current.scrollTo({
          y: animation.value,
          animated: false,
        })
    })

    if (contentHeight) {
      Animated.timing(scrollAnimation.current, {
        toValue: contentHeight,
        duration: contentHeight * 100,
        useNativeDriver: true,
        easing: Easing.linear,
      }).start()
    }
    return () => scrollAnimation.current.removeAllListeners()
  }, [contentHeight])

  return (
    <Animated.ScrollView
      ref={scrollRef}
      onContentSizeChange={(width, height) => {
        setContentHeight(height)
      }}
      onScrollBeginDrag={() => scrollAnimation.current.stopAnimation()}
    >
      {children}
    </Animated.ScrollView>
  )
}