scroll-fold-nav.uvue 5.6 KB
Newer Older
1
<template>
雪洛's avatar
雪洛 已提交
2 3
  <scroll-view @scroll="onScroll" class="scroll-view" rebound="false">
    <!--#ifdef APP-->
4 5
    <view class="height-seat" style="height: 125px;">
      <!-- 垫高专用 -->
雪洛's avatar
雪洛 已提交
6 7 8 9 10 11 12 13
    </view>
    <!--#endif-->
    <!--#ifdef WEB-->
    <view class="height-seat" style="height: 90px;">
      <!-- 垫高专用 -->
    </view>
    <!--#endif-->

14 15 16 17 18 19
    <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>
20
      </view>
21 22 23 24
      <view class="content-item" v-for="(item,index) in 20" :key="index">
        <text class="text">content-{{item}}</text>
      </view>
    </view>
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41

    <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>

42
  </scroll-view>
43 44
</template>

45
<script>
46 47 48
  export default {
    data() {
      return {
49
        statusBarHeight: 35,
50 51
        scrollTop: 0,
        searchWidth: 700,
52 53 54
        searchNode: null as Element | null,
        boxNode: null as Element | null,
        navNode: null as Element | null
55
      }
56 57 58 59
    },
    onLoad() { },
    onReady() {
      this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight ?? 35;
60 61 62
      this.searchNode = this.$refs['search'] as Element;
      this.boxNode = this.$refs['top-box'] as Element;
      this.navNode = this.$refs['scroll-fold-nav'] as Element;
63
    },
64 65
    methods: {
      onScroll(e : ScrollEvent) {
雪洛's avatar
雪洛 已提交
66 67 68 69 70 71 72
        let scrollTop = e.detail.scrollTop
        // #ifdef APP
        const originalBoxHeight = 125
        // #else
        const originalBoxHeight = 90
        // #endif
        this.boxNode?.style?.setProperty('height', (originalBoxHeight - (scrollTop > 35 ? 35 : scrollTop)) + 'px');
雪洛's avatar
雪洛 已提交
73
        this.boxNode?.style?.setProperty('background-color', 'rgba(255, 255, 255, ' + (scrollTop * 3 > 100 ? 100 : scrollTop * 3) / 100.0 + ')');
74 75
        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');
76
        this.searchNode?.style?.setProperty('top', 0 - (scrollTop > 40 ? 40 : scrollTop) + 'px');
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
        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'
        });
      }
    },
106

107
  }
108 109 110
</script>

<style>
111 112 113 114
  .page {
    flex: 1;
    background-color: #fbdf0d;
  }
115

116 117
  .scroll-view {
    flex: 1;
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
  }

  .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;
  }
142

143 144 145 146
  .top-box {
    position: fixed;
    top: 0;
    align-items: flex-end;
雪洛's avatar
雪洛 已提交
147 148
    border-bottom: 1px solid #efefef;
    /* #ifdef APP */
149
    height: 125px;
雪洛's avatar
雪洛 已提交
150 151 152 153
    padding-top: 35px;
    /* #else */
    height: 90px;
    /* #endif */
154 155
    background-color: rgba(255, 255, 255, 0);
    background-color: aliceblue;
156
  }
157

158 159 160 161
  .scroll-fold-nav {
    height: 44px;
    width: 750rpx;
    justify-content: center;
162 163 164 165 166 167 168
  }

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

  .nav-back {
雪洛's avatar
雪洛 已提交
169 170 171 172 173 174
    position: absolute;
    /* #ifdef APP */
    top: 46px;
    /* #else */
    top: 11px;
    /* #endif */
175 176 177 178 179 180 181 182
    left: 8px;
  }

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

183 184 185 186 187
  .search {
    background-color: #FFFFFF;
    border: 1px solid #fbdf0d;
    height: 35px;
    border-radius: 100px;
H
hdx 已提交
188
    margin: 0 12px;
189 190 191
    padding: 8px;
    flex-direction: row;
    align-items: center;
192 193 194 195 196 197 198 199 200 201 202 203 204
    justify-content: space-between;
    width: 700rpx;
    top: 0px;
  }

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

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

206 207 208 209 210 211 212 213 214 215 216 217
  .search-tip-text {
    font-size: 12px;
    color: #666;
  }

  .search-btn {
    font-size: 12px;
    background-color: #ff6900;
    color: #FFF;
    padding: 5px 8px;
    border-radius: 100px;
  }
雪洛's avatar
雪洛 已提交
218
</style>