scroll-fold-nav.uvue 5.2 KB
Newer Older
1
<template>
2 3 4 5 6 7 8 9 10 11
  <scroll-view :scroll-y="true" @scroll="onScroll" class="scroll-view" rebound="false">
    <view class="height-seat" style="height: 125px;">
      <!-- 垫高专用 -->
    </view>
    <view class="content">
      <view class="content-item">
        <text class="text">1. 当前示例监听了 scroll-view 的 scroll 事件 ,滚动页面实时监听scrollTop。</text>
        <text class="text">2. 使用 ref 直接获取元素的节点,并在 scroll 事件中通过节点的 setProperty
          方法来修改搜索导航栏的高度、位置和背景颜色等样式,从而达到滚动折叠的效果。</text>
        <text class="text">3. 请向上\向下滚动页面观察效果。</text>
12
      </view>
13 14 15 16
      <view class="content-item" v-for="(item,index) in 20" :key="index">
        <text class="text">content-{{item}}</text>
      </view>
    </view>
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33

    <view ref="top-box" class="top-box">
      <view ref="scroll-fold-nav" class="scroll-fold-nav">
        <view class="nav-title">DCloud 为开发者而生</view>
      </view>
      <view @click="back" class="nav-back">
        <image class="back-img" src="/static/template/scroll-fold-nav/back.png" mode="widthFix"></image>
      </view>
      <view ref="search" class="search" @click="toSearchPage">
        <view class="search-inner">
          <image class="search-img" src="/static/template/scroll-fold-nav/search.png" mode="widthFix"></image>
          <text class="search-tip-text">请输入你要搜索的内容</text>
        </view>
        <text class="search-btn">搜索</text>
      </view>
    </view>

34
  </scroll-view>
35 36
</template>

37
<script>
38 39 40
  export default {
    data() {
      return {
41
        statusBarHeight: 35,
42 43
        scrollTop: 0,
        searchWidth: 700,
DCloud-yyl's avatar
DCloud-yyl 已提交
44 45 46
        searchNode: null as Element | null,
        boxNode: null as Element | null,
        navNode: null as Element | null
47
      }
48 49 50 51
    },
    onLoad() { },
    onReady() {
      this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight ?? 35;
DCloud-yyl's avatar
DCloud-yyl 已提交
52 53 54
      this.searchNode = this.$refs['search'] as Element;
      this.boxNode = this.$refs['top-box'] as Element;
      this.navNode = this.$refs['scroll-fold-nav'] as Element;
55
    },
56 57 58
    methods: {
      onScroll(e : ScrollEvent) {
        let scrollTop = e.detail.scrollTop
59 60
        this.boxNode?.style?.setProperty('height', (125 - (scrollTop > this.statusBarHeight ? this.statusBarHeight : scrollTop)) + 'px');
        this.boxNode?.style?.setProperty('backgroundColor', 'rgba(255, 255, 255, ' + (scrollTop * 3 > 100 ? 100 : scrollTop * 3) / 100.0 + ')');
61 62
        this.navNode?.style?.setProperty('opacity', 1 - (scrollTop * 3 > 100 ? 100 : scrollTop * 3) / 100.0);
        this.searchNode?.style?.setProperty('width', 700 - (scrollTop > 40 ? 40 : scrollTop) + 'rpx');
63
        this.searchNode?.style?.setProperty('top', 0 - (scrollTop > 40 ? 40 : scrollTop) + 'px');
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
        this.scrollTop = scrollTop;
      },
      back() {
        // uni.navigateBack()  // 这么写用不了
        // 这么写可以用
        uni.navigateBack({
          success(result) {
            console.log('navigateBack success', result.errMsg)
          },
          fail(error) {
            console.log('navigateBack fail', error.errMsg)
          },
          complete(result) {
            console.log('navigateBack complete', result.errMsg)
          },
        })

        // uni.switchTab({
        //   url:'/pages/tabBar/template'
        // })

      },
      toSearchPage() {
        uni.showToast({
          title: '暂不支持',
          icon: 'none'
        });
      }
    },
93

94
  }
95 96 97
</script>

<style>
98 99 100 101
  .page {
    flex: 1;
    background-color: #fbdf0d;
  }
102

103 104
  .scroll-view {
    flex: 1;
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
  }

  .height-seat {
    height: 110px;
    /* background-color: #fbdf0d; */
  }

  .content {
    padding: 5px 15px;
    background-color: #f5f5f5;
  }

  .content-item {
    padding: 15px;
    margin: 5px 0;
    background-color: #fff;
    border-radius: 5px;
  }

  .text {
    font-size: 14px;
    color: #666;
    line-height: 20px;
  }
129

130 131 132
  .top-box {
    position: fixed;
    top: 0;
133
    padding-top: 35px;
134
    align-items: flex-end;
135 136 137 138
    border-bottom: 1px solid #efefef;
    height: 125px;
    background-color: rgba(255, 255, 255, 0);
    background-color: aliceblue;
139
  }
140

141 142 143 144
  .scroll-fold-nav {
    height: 44px;
    width: 750rpx;
    justify-content: center;
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
  }

  .nav-title {
    margin-left: 30px;
  }

  .nav-back {
    position: absolute;
    top: 44px;
    left: 8px;
  }

  .nav-back .back-img {
    width: 18px;
    margin-top: 2px;
  }

162 163 164 165 166 167 168 169 170
  .search {
    background-color: #FFFFFF;
    border: 1px solid #fbdf0d;
    height: 35px;
    border-radius: 100px;
    margin: 0 25rpx;
    padding: 8px;
    flex-direction: row;
    align-items: center;
171 172 173 174 175 176 177 178 179 180 181 182 183
    justify-content: space-between;
    width: 700rpx;
    top: 0px;
  }

  .search-inner {
    margin-top: 2px;
    flex-direction: row;
  }

  .search-inner .search-img {
    width: 15px;
  }
184

185 186 187 188 189 190 191 192 193 194 195 196
  .search-tip-text {
    font-size: 12px;
    color: #666;
  }

  .search-btn {
    font-size: 12px;
    background-color: #ff6900;
    color: #FFF;
    padding: 5px 8px;
    border-radius: 100px;
  }
197
</style>