import React from 'react'; import { Link } from 'react-router'; import { FormattedMessage } from 'react-intl'; import TweenOne from 'rc-tween-one'; import ScrollOverPack from 'rc-scroll-anim/lib/ScrollOverPack'; import { Icon, Button } from 'antd'; import QueueAnim from 'rc-queue-anim'; const clientHeight = document.documentElement.clientHeight; function onScrollEvent(e) { const header = document.getElementById('header'); if (e.pageY >= clientHeight) { if (header.className.indexOf('home-nav-bottom') < 0) { header.className += ' home-nav-bottom'; } } else if (header.className.indexOf('home-nav-bottom') >= 0) { header.className = header.className.replace(/home-nav-bottom/ig, ''); } } export default function Page1() { return (

); }