mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
45 lines
1.6 KiB
JavaScript
45 lines
1.6 KiB
JavaScript
import React from 'react';
|
|
import { Link } from 'react-router';
|
|
import { FormattedMessage } from 'react-intl';
|
|
import ScrollOverPack from 'rc-scroll-anim/lib/ScrollOverPack';
|
|
import GitHubButton from 'react-github-button';
|
|
import 'react-github-button/assets/style.css';
|
|
import { Icon } from 'antd';
|
|
import QueueAnim from 'rc-queue-anim';
|
|
|
|
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 query = location.query;
|
|
return (
|
|
<section id="banner">
|
|
<ScrollOverPack scrollName="banner" className="page" onChange={({ mode }) => onEnterChange(mode)} replay>
|
|
<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={{ query, pathname: '/docs/spec/introduce' }}>
|
|
<FormattedMessage id="app.home.introduce" />
|
|
</Link>
|
|
<Link to={{ query, pathname: '/docs/react/introduce' }}>
|
|
<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" />
|
|
</ScrollOverPack>
|
|
</section>
|
|
);
|
|
}
|