# 页面滚动tabbar变为滚动到顶部

# 概述

有些应用在使用过程中,交互这块变一下,就会让人就觉得耳目一新。例如在页面滚动过程中,如果是tabbar页面,把底部tabbar项变为回到顶部,点击就可以回到顶部。

效果跟悬浮在页面右侧等位置,效果差不多,当然两者各有特色。

# 实现

<template>
  <view></view>
</template>

<script>
export default {
  data() {
    return {
      showTop: false,
      top: 0
    }
  },
  onLoad(options) {

  },
  onTabItemTap(res) {
    if (this.showTop) {
      this.goTop()
      this.resetGoTop()
    }
  },
  onPageScroll(res) {
    let { scrollTop } = res
    scrollTop > 300 ? this.setGoTop() : this.resetGoTop()
  },
  methods: {
    setGoTop() {
      uni.setTabBarItem({
        index: 0,
        text: '回到顶部',
        iconPath: 'static/top.png',
        selectedIconPath: 'static/top.png'
      })
      this.showTop = true
    },
    resetGoTop() {
      uni.setTabBarItem({
        index: 0,
        text: '首页',
        iconPath: 'static/home.png',
        selectedIconPath: 'static/home-active.png'
      })
      this.showTop = false
    },
    goTop() {
      uni.pageScrollTo({
        scrollTop: 0,
        duration: 100
      })
    }
  }
}
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53