Skip to content

Backtop

A button used to return to the top of the page.

Basic Usage

Since returning to the top requires real-time monitoring of the scrollbar position, and the page's scroll information cannot be obtained in the uniapp component, the scrollbar position can only be obtained in the page's onPageScroll lifecycle, and then passed to the component through Props.

html
  <wd-backtop :scrollTop="scrollTop"></wd-backtop>
typescript
const scrollTop = ref<number>(0)
onPageScroll((e) => {
  scrollTop.value = e.scrollTop
})

Custom Icon

html
  <wd-backtop :scrollTop="scrollTop">
    <text>TOP<text>
  </wd-backtop>

Custom Style

html
  <wd-backtop :scrollTop="scrollTop" customStyle="background: #007aff;color:white;"></wd-backtop>

Attributes

AttributeDescriptionTypeOptionsDefaultVersion
scrollTopPage scroll distancenumber---
topDistance from top when to show, unit pxnumber-300-
durationReturn to top scroll time, unit msnumber-100-
zIndexComponent z-index propertynumber-10-
iconStyleCustom icon stylestring---
shapeButton shapestringsquarecircle-
bottomDistance from screen top, unit pxnumber-100-
rightDistance from screen right, unit pxnumber-20-

External Classes

Class NameDescriptionVersion
custom-classRoot element style-
custom-styleRoot element style-

Source Code

Documentation
Component

Released under the MIT License.

Released under the MIT License.