ant-design/site/component/Home/Banner.jsx

37 lines
1.1 KiB
React
Raw Normal View History

2016-03-03 17:23:08 +08:00
import React from 'react';
import { Link } from 'react-router';
import ScrollElement from 'rc-scroll-anim/lib/ScrollElement';
import TweenOne from 'rc-tween-one';
import { QueueAnim, Icon } from '../../../';
export default class Banner extends React.Component {
typeFunc(a) {
if (a.key === 'line') {
return 'right';
} else if (a.key === 'button') {
return 'bottom';
}
return 'left';
}
render() {
return (
<section id="banner">
<ScrollElement scrollName="banner" className="page">
<QueueAnim className="banner-text-wrapper" type={this.typeFunc} delay={300}>
<h2 key="h2">ANT <p>DESIGN</p></h2>
<p key="content">一个 UI 设计语言</p>
<span className="line" key="line" />
<Link key="button" to="/spec">
<Icon type="smile-circle" />开始探索
</Link>
</QueueAnim>
<TweenOne className="down" vars={[{ opacity: 1 }, { y: 10, duration: 800, yoyo: true, repeat: -1 }]}>
<Icon type="down" />
</TweenOne>
</ScrollElement>
</section>
);
}
}