我正在使用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来展示问题。
答案 0 :(得分:0)
如果我正确理解了您的意图,则只需在初始对象中将transform
设置为从-0%
开始:
initial: {
transform: "translate3d(-0%,0,0)",
opacity: 0.2
},