我正在使用 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>
);
...
初始页面使用"初始"样式正确呈现,但不会使用"离开"样式转换出来。导航到其他页面后,它们都会像应有的方式过渡,甚至是返回那里时的初始页面。
那么,如何让初始页面像其他页面一样过渡出来呢?
编辑:添加了显示问题的代码沙箱。
如果我
正确理解您的意图,您可以将初始对象中的transform
设置为从-0%
开始:
initial: {
transform: "translate3d(-0%,0,0)",
opacity: 0.2
},