2016-03-03 17:23:08 +08:00
|
|
|
import React from 'react';
|
|
|
|
import { Link } from 'react-router';
|
2016-09-01 11:53:55 +08:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2016-11-11 17:56:05 +08:00
|
|
|
import ScrollElement from 'rc-scroll-anim/lib/ScrollElement';
|
2016-03-14 15:00:11 +08:00
|
|
|
import GitHubButton from 'react-github-button';
|
2016-04-11 10:12:48 +08:00
|
|
|
import { Icon } from 'antd';
|
2016-03-30 19:14:09 +08:00
|
|
|
import QueueAnim from 'rc-queue-anim';
|
2016-03-03 17:23:08 +08:00
|
|
|
|
2016-09-27 10:06:34 +08:00
|
|
|
function typeFunc(a) {
|
|
|
|
if (a.key === 'line') {
|
|
|
|
return 'right';
|
|
|
|
} else if (a.key === 'button') {
|
|
|
|
return 'bottom';
|
2016-03-03 17:23:08 +08:00
|
|
|
}
|
2016-09-27 10:06:34 +08:00
|
|
|
return 'left';
|
|
|
|
}
|
2016-03-03 17:23:08 +08:00
|
|
|
|
2016-11-09 19:55:14 +08:00
|
|
|
export default function Banner({ location, onEnterChange }) {
|
2016-10-18 12:04:09 +08:00
|
|
|
const query = location.query;
|
2016-09-27 10:06:34 +08:00
|
|
|
return (
|
2016-11-21 17:48:39 +08:00
|
|
|
<section className="page banner-wrapper">
|
2016-11-11 17:56:05 +08:00
|
|
|
<ScrollElement id="banner" onChange={({ mode }) => onEnterChange(mode)}>
|
2016-11-09 19:55:14 +08:00
|
|
|
<QueueAnim className="banner-text-wrapper" type={typeFunc} delay={300} key="banner">
|
2016-09-27 10:06:34 +08:00
|
|
|
<h2 key="h2">ANT <p>DESIGN</p></h2>
|
|
|
|
<p key="content"><FormattedMessage id="app.home.slogan" /></p>
|
|
|
|
<span className="line" key="line" />
|
|
|
|
<div key="button1" className="start-button clearfix">
|
2016-10-18 12:04:09 +08:00
|
|
|
<Link to={{ query, pathname: '/docs/spec/introduce' }}>
|
2016-09-27 10:06:34 +08:00
|
|
|
<FormattedMessage id="app.home.introduce" />
|
|
|
|
</Link>
|
2016-10-18 12:04:09 +08:00
|
|
|
<Link to={{ query, pathname: '/docs/react/introduce' }}>
|
2016-09-27 10:06:34 +08:00
|
|
|
<FormattedMessage id="app.home.start" />
|
|
|
|
</Link>
|
|
|
|
</div>
|
|
|
|
<GitHubButton key="github-button" type="stargazers"
|
|
|
|
namespace="ant-design" repo="ant-design"
|
|
|
|
/>
|
|
|
|
</QueueAnim>
|
|
|
|
<Icon type="down" className="down" />
|
2016-11-11 17:56:05 +08:00
|
|
|
</ScrollElement>
|
2016-09-27 10:06:34 +08:00
|
|
|
</section>
|
|
|
|
);
|
2016-03-03 17:23:08 +08:00
|
|
|
}
|