我做了一个gatsby-wordpress-starter(https://www.gatsbyjs.org/starters/?c=Wordpress)的git克隆
我不做任何更改就添加了姿势: (https://popmotion.io/pose/examples/route-transitions-reach-router/)
按照上面的url上的说明,我将components / layout.js文件更改为以下内容(由于页面路径没有像示例一样硬编码到布局中,因此略有不同):
import React from 'react'
import ReactDOM from 'react-dom';
import { Router, Link, Location } from '@reach/router';
import Helmet from 'react-helmet'
import Navbar from '../components/Navbar'
import Page from '../templates/page'
import './all.sass'
import posed, { PoseGroup } from 'react-pose';
const RouteContainer = posed.div({
enter: { opacity: 1, delay: 300, beforeChildren: 300 },
exit: { opacity: 0 }
});
const PosedRouter = ({ children }) => (
<Location>
{({ location }) => ( <PoseGroup>
<RouteContainer key={location.key}>
<Router location={location}>{children}</Router>
</RouteContainer>
</PoseGroup>
)}
</Location>
);
const TemplateWrapper = ({children}) => (
<div>
<Helmet title="Home | Gatsby + Netlify CMS" />
<Navbar />
<PosedRouter/>
{console.log(location)}
</div>
)
export default TemplateWrapper
运行此命令时,我得到:未捕获的TypeError:无法读取未定义的属性“ map”
如果我展开console.log的“位置”,则其中没有“键”
为此,我还尝试安装了官方的gatsby transition插件,但该插件也无法正常工作。它执行输入转换,但不执行输出转换。确实会触发退出的过渡,但要等页面内容更改后才会触发。
答案 0 :(得分:0)
我建议使用另一种方法,即我一直用来创建页面过渡(淡入,淡出和其他)的方法:使用gatsby-plugin-transition-link。我不确定您尝试过哪一种,但是这种方法有效,并且语义更简洁 方法。
它允许您创建自定义动画或使用一些默认或预定义的动画,可以查看其演示站点here,其中有一些过渡示例。
对于预定义的过渡(最简单的方法),您只需要导入de component并像这样使用它即可:
import AniLink from "gatsby-plugin-transition-link/AniLink"
<AniLink paintDrip to="page-2">
Go to Page 2
</AniLink>
对于自定义过渡,您需要定义de entry
并退出effect
,例如:
<TransitionLink
exit={{
length: length,
trigger: ({ exit, node }) =>
this.someCustomDefinedAnimation({ exit, node, direction: "out" }),
}}
entry={{
length: 0,
trigger: ({ exit, node }) =>
this.someCustomDefinedAnimation({ exit, node, direction: "in" }),
}}
{...props}
>
{props.children}
</TransitionLink>
有关更多信息,请查看他们的docs。