scroll-fold-nav.uvue 4.9 KB
Newer Older
1
<template>
2 3 4 5
  <view class="page">
    <scroll-view :scroll-y="true" @scroll="onScroll" class="scroll-view" rebound="false">
			<view class="height-seat" style="height: 110px;">
			  <!-- 垫高专用 -->
6
			</view>
7 8 9 10 11
      <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 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
        <view class="content-item" v-for="(item,index) in 20" :key="index">
          <text class="text">content-{{item}}</text>
        </view>
      </view>
    </scroll-view>

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

  </view>
36 37
</template>

38
<script>
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
  export default {
    data() {
      return {
        scrollTop: 0,
        searchWidth: 700,
        searchNode: null as INode | null,
        boxNode: null as INode | null,
        navNode: null as INode | null
      }
    },
		onLoad() {},
		onReady() {
		  this.searchNode = this.$refs['search'] as INode;
		  this.boxNode = this.$refs['top-box'] as INode;
		  this.navNode = this.$refs['scroll-fold-nav'] as INode;
54
		},
55 56 57 58 59 60 61 62 63 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 93
    methods: {
      onScroll(e : ScrollEvent) {
        let scrollTop = e.detail.scrollTop
        this.boxNode?.style?.setProperty('height', (110 - (scrollTop > 40 ? 40 : scrollTop)) + 'px');
        this.boxNode?.style?.setProperty('backgroundColor', 'rgba(255, 255, 255, ' + (scrollTop * 3 > 100 ? 100 : scrollTop * 3) / 100.0 + ')');
        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');
        this.searchNode?.style?.setProperty('top', 0 - (scrollTop > 40 ? 40 : scrollTop) + 'px');
        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'
        });
      }
    },
    
  }
94 95 96
</script>

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

102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
  .scroll-view {
    flex: 1;
  }
	
	.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;
125 126
	}

127 128 129 130 131 132 133 134 135
  .top-box {
    position: fixed;
    top: 0;
    padding-top: 25px;
    align-items: flex-end;
    border-bottom: 1px solid #efefef;
		height:110px;
		background-color:rgba(255,255,255,0)
  }
136

137 138 139 140 141 142 143 144
  .scroll-fold-nav {
    height: 44px;
    width: 750rpx;
    justify-content: center;
  }
	
	.nav-title {
		margin-left: 30px;
145
	}
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
	
	.nav-back {
		position: absolute;
		top: 35px;
		left: 8px;
	}
	
	.nav-back .back-img {
		width: 18px;
		margin-top: 2px;
	}
	
  .search {
    background-color: #FFFFFF;
    border: 1px solid #fbdf0d;
    height: 35px;
    border-radius: 100px;
    margin: 0 25rpx;
    padding: 8px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
		width:700rpx;
		top:0px
  }
	
	.search-inner {
		margin-top: 2px;
		flex-direction: row;
	}
	
	.search-inner .search-img {
		width: 15px;
179 180
	}

181 182 183 184 185 186 187 188 189 190 191 192
  .search-tip-text {
    font-size: 12px;
    color: #666;
  }

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