BackTop回到顶部

返回页面顶部的操作按钮。

何时使用

  • 当页面内容区域比较长时;

  • 当用户需要频繁返回顶部查看相关内容时。

代码演示

BackTop回到顶部 - 图1

基本

最简单的用法。

  1. import { BackTop } from 'antd';
  2. ReactDOM.render(
  3. <div>
  4. <BackTop />
  5. Scroll down to see the bottom-right
  6. <strong style={{ color: 'rgba(64, 64, 64, 0.6)' }}> gray </strong>
  7. button.
  8. </div>,
  9. mountNode,
  10. );

BackTop回到顶部 - 图2

自定义样式

可以自定义回到顶部按钮的样式,限制宽高:40px * 40px

  1. import { BackTop } from 'antd';
  2. ReactDOM.render(
  3. <div>
  4. <BackTop>
  5. <div className="ant-back-top-inner">UP</div>
  6. </BackTop>
  7. Scroll down to see the bottom-right
  8. <strong style={{ color: '#1088e9' }}> blue </strong>
  9. button.
  10. </div>,
  11. mountNode,
  12. );
  1. #components-back-top-demo-custom .ant-back-top {
  2. bottom: 100px;
  3. }
  4. #components-back-top-demo-custom .ant-back-top-inner {
  5. height: 40px;
  6. width: 40px;
  7. line-height: 40px;
  8. border-radius: 4px;
  9. background-color: #1088e9;
  10. color: #fff;
  11. text-align: center;
  12. font-size: 20px;
  13. }

API

有默认样式,距离底部 50px,可覆盖。

自定义样式宽高不大于 40px * 40px。

参数说明类型默认值版本
target设置需要监听其滚动事件的元素,值为一个返回对应 DOM 元素的函数Function() => window
visibilityHeight滚动高度达到此参数值才出现 BackTopnumber400
onClick点击按钮的回调函数Function-