2016-03-03 17:23:08 +08:00
|
|
|
import React from 'react';
|
2017-01-17 15:24:13 +08:00
|
|
|
import { Link } from 'bisheng/router';
|
2016-09-01 11:53:55 +08:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2016-03-03 17:23:08 +08:00
|
|
|
import TweenOne from 'rc-tween-one';
|
|
|
|
import ScrollOverPack from 'rc-scroll-anim/lib/ScrollOverPack';
|
2016-04-11 10:12:48 +08:00
|
|
|
import { Icon, Button } from 'antd';
|
2016-03-30 19:14:09 +08:00
|
|
|
import QueueAnim from 'rc-queue-anim';
|
2016-12-09 13:02:16 +08:00
|
|
|
import * as utils from '../utils';
|
2016-03-03 17:23:08 +08:00
|
|
|
|
2016-10-18 12:04:09 +08:00
|
|
|
export default function Page1({ location }) {
|
2016-04-13 17:38:53 +08:00
|
|
|
return (
|
2017-03-27 14:03:28 +08:00
|
|
|
<ScrollOverPack id="page1" className="content-wrapper page">
|
2017-05-15 12:03:02 +08:00
|
|
|
<TweenOne
|
|
|
|
key="image"
|
|
|
|
className="image1 image-wrapper"
|
2016-11-11 17:56:05 +08:00
|
|
|
animation={{ x: 0, opacity: 1, ease: 'easeOutQuad' }}
|
2016-07-08 17:33:25 +08:00
|
|
|
style={{ transform: 'translateX(-100px)', opacity: 0 }}
|
2016-06-06 13:54:10 +08:00
|
|
|
/>
|
2016-11-11 17:56:05 +08:00
|
|
|
<QueueAnim className="text-wrapper" key="text" leaveReverse>
|
2016-09-01 11:53:55 +08:00
|
|
|
<h2 key="h2"><FormattedMessage id="app.home.best-practice" /></h2>
|
|
|
|
<p key="p" style={{ maxWidth: 310 }}><FormattedMessage id="app.home.experience" /></p>
|
2016-04-13 17:38:53 +08:00
|
|
|
<div key="button">
|
2017-02-27 18:04:35 +08:00
|
|
|
<Link to={utils.getLocalizedPathname('/docs/spec/cases', utils.isZhCN(location.pathname))}>
|
2016-04-13 17:38:53 +08:00
|
|
|
<Button type="primary" size="large">
|
2016-09-01 11:53:55 +08:00
|
|
|
<FormattedMessage id="app.home.learn-more" />
|
2016-04-13 17:38:53 +08:00
|
|
|
<Icon type="right" />
|
|
|
|
</Button>
|
|
|
|
</Link>
|
|
|
|
</div>
|
|
|
|
</QueueAnim>
|
|
|
|
</ScrollOverPack>
|
|
|
|
);
|
2016-03-03 17:23:08 +08:00
|
|
|
}
|