mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
22 lines
659 B
JavaScript
22 lines
659 B
JavaScript
import React from 'react';
|
|
import ScrollLink from 'rc-scroll-anim/lib/ScrollLink';
|
|
import scrollScreen from 'rc-scroll-anim/lib/ScrollScreen';
|
|
|
|
export default class Link extends React.Component {
|
|
componentDidMount() {
|
|
scrollScreen.init({ docHeight: 4746 });
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div id="list">
|
|
<ScrollLink className="list-point" location="banner" />
|
|
<ScrollLink className="list-point" location="page1" />
|
|
<ScrollLink className="list-point" location="page2" />
|
|
<ScrollLink className="list-point" location="page3" />
|
|
<ScrollLink className="list-point" location="page4" />
|
|
</div>
|
|
);
|
|
}
|
|
}
|