1

我的要求是,当ViewPager单击并拖动下一张图像的图像时,上一张图像应降低每次拖动的不透明度。这是我的代码和代码。

这张图片是我要求的小例子。

浏览器

import React, { useRef } from 'react'
import clamp from 'lodash-es/clamp'
import { useSprings, animated } from 'react-spring'
import { useDrag } from 'react-use-gesture'
import './styles.css'

function Viewpager() {
  const index = useRef(0)

  const [props, set] = useSprings(alphabets.length, i => ({
    x: i * window.innerWidth,
    scale: 1,
    opacity: 1,
    display: 'block'
  }))
  const bind = useDrag(({ active, down, movement: [mx], direction: [xDir], distance, cancel }) => {
    set(i => {
      if (i < index.current - 1 || i > index.current + 1) return { display: 'none' }
      const x = (i - index.current) * window.innerWidth + (down ? mx : 0)
      const scale = down ? 1 - distance / window.innerWidth / 2 : 1
      const opacity = active ? distance * 0.01 : 1
      return { x, scale, opacity, display: 'block' }
    })
  })

  return props.map(({ x, display, scale, opacity }, i) => (
    <animated.div
      {...bind()}
      key={i}
      style={{
        opacity,
        display,
        x
      }}
    />
  ))
}

我需要与代码和代码相同的功能,并在将卡拖到其他卡时并行降低不透明度。如果有人在其他库中有任何其他解决方案,例如framer-motion. 这也很有帮助。

4

1 回答 1

2

您应该将 x 值插入到不透明度中。x 值介于 0 和负 innerWitdh / 2 之间。您应该将其传输以获取 1 到 0 之间的值。

这是工作公式。

opacity: x.to(x => 1 + x / (window.innerWidth / 2)),

这是示例: https ://codesandbox.io/s/card-slider-jwf3f

边注:

如果您在屏幕上显示公式,您可以轻松检查公式。您所要做的就是将其作为animated.div 的文本。例如:

 <animated.div>{x.to(x => 1 - Math.abs(x / (window.innerWidth / 2)))}</animated.div>
于 2020-06-20T08:27:04.923 回答