You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.3 KiB
35 lines
1.3 KiB
import React from 'react';
|
|
import { FormattedMessage } from 'react-intl';
|
|
import { Link } from 'react-router';
|
|
import TweenOne from 'rc-tween-one';
|
|
import ScrollOverPack from 'rc-scroll-anim/lib/ScrollOverPack';
|
|
import { Icon, Button } from 'antd';
|
|
import QueueAnim from 'rc-queue-anim';
|
|
|
|
export default function Page2({ location }) {
|
|
return (
|
|
<ScrollOverPack scrollName="page2"
|
|
className="content-wrapper page" playScale={1} replay
|
|
hideProps={{ image: { reverse: true } }}
|
|
>
|
|
<QueueAnim className="text-wrapper left-text" delay={300} key="text"
|
|
duration={550} type="bottom" leaveReverse
|
|
>
|
|
<h2 key="h2"><FormattedMessage id="app.home.design-pattern" /></h2>
|
|
<p key="p" style={{ maxWidth: 260 }}><FormattedMessage id="app.home.pattern" /></p>
|
|
<div key="button">
|
|
<Link to={{ query: location.query, pathname: '/docs/pattern/navigation' }}>
|
|
<Button type="primary" size="large">
|
|
<FormattedMessage id="app.home.learn-more" />
|
|
<Icon type="right" />
|
|
</Button>
|
|
</Link>
|
|
</div>
|
|
</QueueAnim>
|
|
<TweenOne key="image" className="image2 image-wrapper"
|
|
animation={{ x: 0, opacity: 1, delay: 300, duration: 550 }}
|
|
style={{ transform: 'translateX(100px)', opacity: 0 }}
|
|
/>
|
|
</ScrollOverPack>
|
|
);
|
|
}
|
|
|