我正在使用react-spring useTransition在这样的页面之间转换:
const context = useContext(AppContext);
const items = [context.page];
const transitions = useTransition(items, item => item.label, {
initial: {
transform: 'translate3d(0,0,0)',
opacity: 0.2,
},
from: {
transform: 'translate3d(100%,0,0)',
opacity: 1,
},
enter: { transform: 'translate3d(0,0,0)', opacity: 1 },
leave: { transform: 'translate3d(-100%,0,0)', opacity: 1 },
});
return (
<div className="app-content">
{transitions.map(({ item, props, key }) => (
<animated.div key={key} style={props}>
{renderPage(item.label)}
</animated.div>
)}
</div>
);
...
初始页面使用“初始”样式正确呈现,但未使用“离开”样式过渡。导航到其他页面后,他们都会按照自己的意愿进行转换,甚至在返回时返回初始页面。
那么,我如何让初始页面像其他页面一样过渡?
编辑:添加了codesandbox展示问题。
如果我理解你的意图,你可以设置初始对象中的transform
从-0%
开始:
initial: {
transform: "translate3d(-0%,0,0)",
opacity: 0.2
},