gpt4 book ai didi

javascript - Framer-motion 拖动不尊重以前更新的 Prop

转载 作者:行者123 更新时间:2023-12-04 11:33:22 24 4
gpt4 key购买 nike

一个简单的用例是允许用户单击按钮以在 slider 中分页或拖动。两个事件调用相同的 paginate带有参数的函数可以前进或后退——简单的东西。
但是,拖动的触发似乎会导致奇怪的行为,即 slider 想要从几张幻灯片开始动画,就好像它忽略了更新的 Prop 一样。使用按钮时不会发生这种情况,并且两者都使用相同的简单 paginate称呼。
任何提示表示赞赏。
最小的例子:

export default function App() {
const [position, setPosition] = useState<number>(0);

const paginate = (direction: Direction) => {
setPosition((prev) => {
return direction === Direction.Forward
? Math.max(-800, prev - 200)
: Math.min(0, prev + 200);
});
};

return (
<div className="App">
<Slider>
<Wrapper
animate={{ x: position }}
transition={{
x: { duration: 1, type: "tween" }
}}
drag="x"
dragConstraints={{
top: 0,
left: 0,
right: 0,
bottom: 0
}}
onDragEnd={(e, { offset, velocity }) => {
const swipe = swipePower(offset.x, velocity.x);

if (swipe < -swipeConfidenceThreshold) {
paginate(Direction.Forward);
} else if (swipe > swipeConfidenceThreshold) {
paginate(Direction.Back);
}
}}
>
<Slide>1</Slide>
<Slide className="alt">2</Slide>
<Slide>3</Slide>
<Slide className="alt">4</Slide>
<Slide>5</Slide>
</Wrapper>
</Slider>
<button onClick={() => paginate(Direction.Back)}>prev</button>
<button onClick={() => paginate(Direction.Forward)}>next</button>
</div>
);
}
Codesandbox Demo

最佳答案

不得不说,这个问题挺有意思的。但是,我想我想出了一个办法让你处理这个问题。我注意到的一件事是,如果你注释掉

onDragEnd={(e, { offset, velocity }) => {
// const swipe = swipePower(offset.x, velocity.x);
// if (swipe < -swipeConfidenceThreshold) {
// paginate(Direction.Forward);
// } else if (swipe > swipeConfidenceThreshold) {
// paginate(Direction.Back);
// }
}}
整个 onDragEnd prop 函数,这个例子仍然不起作用,因为从外观上看,可拖动组件不尊重您的偏移量。
我意识到此时,问题是组件的内部状态与您的状态不同步。你会看吗,Framer Motion API 实际上提供了一种检查方法。
https://www.framer.com/api/motion/motionvalue/#usemotionvalue
这是钩子(Hook) useMotionValue()这使我们能够看到实际发生的事情。事实证明,当用户开始拖动时,我们的值设置错误:
useEffect(
() =>
motionX.onChange((latest) => {
console.log("LATEST: ", latest);
}),
[]
);
我们可以看到这一点,因为一旦我们开始拖动,状态就会“跳”到 200。
所以理论上修复很容易,我们只需要确保让那个值“知道”我们的偏移量,这样它就会从正确的偏移量开始!
无论如何,这是我的思考过程,这是解决方案,您需要做的就是设置左约束以使其工作:
dragConstraints={{
top: 0,
left: position,
right: 0,
bottom: 0
}}
还有多田!这使它工作。这是我的工作解决方案: https://codesandbox.io/s/lingering-waterfall-2tsfi?file=/src/App.tsx

关于javascript - Framer-motion 拖动不尊重以前更新的 Prop ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67910796/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com