# BackTop 返回顶部
该组件一个用于长页面,滑动一定距离后,出现返回顶部按钮,方便快速返回顶部的场景。
# 平台差异说明
App(vue) | App(nvue) | H5 | 小程序 |
---|---|---|---|
√ | √ | √ | √ |
# 基本使用
由于返回顶部需要实时监听滚动条的位置,从而判断返回的按钮该出现还是隐藏,由于组件无法得知页面的滚动条信息,只能在页面的onPageScroll
生命周期
中获得滚动条的位置,故需要在页面监听onPageScroll
生命周期,实时获得滚动条的位置,通过Props传递给组件。
<template>
<view class="wrap">
<text>滑动页面,返回顶部按钮将出现在右下角</text>
<up-back-top :scroll-top="scrollTop"></up-back-top>
</view>
</template>
<script setup>
import { ref } from 'vue';
import { onPageScroll } from '@dcloudio/uni-app';
// 创建响应式数据 scrollTop
const scrollTop = ref(0);
// onPageScroll 方法来更新 scrollTop 的值
onPageScroll((e) => {
scrollTop.value = e.scrollTop;
});
</script>
<style lang="scss" scoped>
.wrap {
height: 200vh;
}
</style>
# 改变返回顶部按钮的出现时机
可以通过top
参数,修改页面滚动多少距离时,出现返回顶部的按钮
<up-back-top :scroll-top="scrollTop" top="600"></up-back-top>
# 自定义返回顶部的图标和提示
- 通过
icon
修改返回顶部按钮的图标,可以是uview-plus内置的图标,或者图片路径 - 通过
text
参数修改返回顶部按钮的文字提示信息,如果需要修改文字的颜色和大小,可以通过customStyle
参数
<up-back-top :scroll-top="scrollTop" icon="arrow-up" text="返回"></up-back-top>
# 其他自定义样式
- 通过
iconStyle
参数自定义图标的样式,比如颜色,大小等 - 通过
customStyle
修改返回按钮的背景颜色,大小等 - 通过
mode
修改按钮的形状,circle
为圆形,square
为方形
注意:如果通过icon
参数传入图片路径的话,需要通过iconStyle
参数设置图片的width
和height
属性
<template>
<view class="wrap">
<text>滑动页面,返回顶部按钮将出现在右下角</text>
<up-back-top :scrollTop="scrollTop" :mode="mode" :iconStyle="iconStyle"></up-back-top>
</view>
</template>
<script setup>
import { ref, reactive } from 'vue';
import { onPageScroll } from '@dcloudio/uni-app';
// 使用 ref 创建响应式基本类型数据
const scrollTop = ref(0);
const mode = ref('square');
// 使用 reactive 创建响应式对象数据
const iconStyle = reactive({
fontSize: '32rpx',
color: '#2979ff'
});
// onPageScroll 方法来更新 scrollTop 的值
onPageScroll((e) => {
scrollTop.value = e.scrollTop;
});
</script>
<style lang="scss" scoped>
.wrap {
height: 200vh;
}
</style>
# 右侧演示页面源代码地址
# API
# Props
参数 | 说明 | 类型 | 默认值 | 可选值 |
---|---|---|---|---|
mode | 按钮形状 | String | circle | square |
icon | uview-plus内置图标名称,或图片路径 | String | arrow-upward | - |
text | 返回顶部按钮的提示文字 | String | - | - |
duration | 返回顶部过程中的过渡时间,单位ms | String | Number | 100 | - |
scrollTop | 页面的滚动距离,通过onPageScroll 生命周期获取 | String | Number | 0 | - |
top | 滚动条滑动多少距离时显示,单位rpx | String | Number | 400 | - |
bottom | 返回按钮位置到屏幕底部的距离,单位rpx | String | Number | 100 | - |
right | 返回按钮位置到屏幕右边的距离,单位rpx | String | Number | 20 | - |
z-index | 返回顶部按钮的层级 | String | Number | 9 | - |
iconStyle | 图标的样式,对象形式 | Object | - | - |
customStyle | 按钮外层的自定义样式 | Object | - | - |
# Slot
名称 | 说明 |
---|---|
- | 自定义返回按钮的所有内容 |