Мое требование: когда ViewPager щелкните и перетащите изображение для следующего изображения, тогда предыдущее изображение должно уменьшать непрозрачность при каждом перетаскивании. Это мой код codeandbox .
Это изображение - небольшой пример моего требования.
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
}}
/>
))
}
Мне нужна такая же функциональность, как codeandbox code, и уменьшать непрозрачность параллельно при перетаскивании карты на другую карту. Если у кого-то есть другое решение в другой библиотеке, например framer-motion
. Это тоже полезно.