【发布时间】:2020-06-09 04:35:57
【问题描述】:
我目前正在将我们的动画移至 react-spring,但在实现动画时遇到困难,例如从左上角到右下角的淡入。一些简单的东西会在 div 中淡入淡出,但我需要控制淡入的方向:
import {useTransition, animated} from 'react-spring'
const component = () => {
const props = useSpring({opacity: 1, from: {opacity: 0}})
return (
<animated.div>
{div contents here}
</animated.div>
)
}
Anyone have experience with React Spring
【问题讨论】:
标签: javascript css reactjs react-spring