我正在尝试在 Framer Motion div 中放置一个非常简单的滚动动画,如下所示:
<motion.div
animate={{
translateY: [1000, 0]
}}
transition={{ duration: 1 }}
>
<BottomSection>
<ScrollDiv>
<Link to="scroll-down" spy={true} smooth={true} offset={50} duration={500}>
Scroll
</Link>
</ScrollDiv>
</BottomSection>
</motion.div>
<Space top="_360" bottom="_360" />
<Element name="scroll-down">
</Element>
enter code here
但是,如果我将 ScrollDiv 放在motion.div 之外,则滚动可以正常工作。这两个库之间是否存在某种不兼容?我怎样才能解决这个问题?