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.
44 lines
1.6 KiB
44 lines
1.6 KiB
import React from 'react';
|
|
import { Link } from 'bisheng/router';
|
|
import { FormattedMessage } from 'react-intl';
|
|
import ScrollElement from 'rc-scroll-anim/lib/ScrollElement';
|
|
import GitHubButton from 'react-github-button';
|
|
import { Icon } from 'antd';
|
|
import QueueAnim from 'rc-queue-anim';
|
|
import * as utils from '../utils';
|
|
|
|
function typeFunc(a) {
|
|
if (a.key === 'line') {
|
|
return 'right';
|
|
} else if (a.key === 'button') {
|
|
return 'bottom';
|
|
}
|
|
return 'left';
|
|
}
|
|
|
|
export default function Banner({ location, onEnterChange }) {
|
|
const isZhCN = utils.isZhCN(location.pathname);
|
|
return (
|
|
<section className="page banner-wrapper">
|
|
<ScrollElement id="banner" onChange={({ mode }) => onEnterChange(mode)}>
|
|
<QueueAnim className="banner-text-wrapper" type={typeFunc} delay={300} key="banner">
|
|
<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">
|
|
<Link to={utils.getLocalizedPathname('/docs/spec/introduce', isZhCN)}>
|
|
<FormattedMessage id="app.home.introduce" />
|
|
</Link>
|
|
<Link to={utils.getLocalizedPathname('/docs/react/introduce', isZhCN)}>
|
|
<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" />
|
|
</ScrollElement>
|
|
</section>
|
|
);
|
|
}
|
|
|