2016-03-03 17:23:08 +08:00
|
|
|
|
import React from 'react';
|
|
|
|
|
import { Link } from 'react-router';
|
|
|
|
|
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-03-03 17:23:08 +08:00
|
|
|
|
|
|
|
|
|
export default class Page3 extends React.Component {
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
|
|
|
|
<ScrollOverPack scrollName="page3" className="content-wrapper page" playScale={1} replay>
|
2016-04-11 16:06:20 +08:00
|
|
|
|
<TweenOne key="image" className="image3 image-wrapper" animation={{ x: 0, opacity: 1, duration: 550 }}
|
|
|
|
|
style={{ transform: 'translateX(-100px)', opacity: 0 }} hideProps={{ reverse: true }} />
|
2016-03-03 17:23:08 +08:00
|
|
|
|
<QueueAnim className="text-wrapper" delay={300} key="text" duration={550} leaveReverse style={{ top: '40%' }}
|
|
|
|
|
hideProps={{ child: null }}>
|
|
|
|
|
<h2 key="h2">丰富的基础组件</h2>
|
|
|
|
|
<p key="p" style={{ maxWidth: 280 }}>丰富、灵活、实用的基础组件,为业务产品提供强有力的设计支持。</p>
|
|
|
|
|
<div key="button">
|
|
|
|
|
<Link to="/components">
|
|
|
|
|
<Button type="primary" size="large">
|
|
|
|
|
了解更多
|
|
|
|
|
<Icon type="right" />
|
|
|
|
|
</Button>
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
</QueueAnim>
|
|
|
|
|
</ScrollOverPack>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|