BackTop回到顶部 - 图1

BackTop 回到顶部

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

何时使用

  • 当页面内容区域比较长时;
  • 当用户需要频繁返回顶部查看相关内容时。

    代码演示

BackTop回到顶部 - 图2

基本

最简单的用法。

  1. <template>
  2. <div>
  3. <a-back-top />
  4. Scroll down to see the bottom-right
  5. <strong style="color: rgba(64, 64, 64, 0.6)"> gray </strong>
  6. button.
  7. </div>
  8. </template>

BackTop回到顶部 - 图3

自定义样式

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

  1. <template>
  2. <div id="components-back-top-demo-custom">
  3. <a-back-top>
  4. <div class="ant-back-top-inner">
  5. UP
  6. </div>
  7. </a-back-top>
  8. Scroll down to see the bottom-right
  9. <strong style="color: #1088e9"> blue </strong>
  10. button.
  11. </div>
  12. </template>
  13. <style scoped>
  14. #components-back-top-demo-custom .ant-back-top {
  15. bottom: 100px;
  16. }
  17. #components-back-top-demo-custom .ant-back-top-inner {
  18. height: 40px;
  19. width: 40px;
  20. line-height: 40px;
  21. border-radius: 4px;
  22. background-color: #1088e9;
  23. color: #fff;
  24. text-align: center;
  25. font-size: 20px;
  26. }
  27. </style>

API

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

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

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

事件

事件名称说明回调参数版本
click点击按钮的回调函数Function