scroll-fold-nav2.uvue 5.0 KB
Newer Older
1 2
<template>
  <view class="page">
3 4 5 6 7 8 9 10 11 12 13 14
    <scroll-view :scroll-y="true" @scroll="onScroll" class="scroll-view" bounces="false">
			<view class="height-seat" style="height: 110px;">
			  <!-- 垫高专用 -->
			</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>
				</view>
        <view class="content-item" v-for="(item,index) in 20" :key="index">
          <text class="text">content-{{item}}</text>
15 16 17 18
        </view>
      </view>
    </scroll-view>

19
    <view ref="top-box" class="top-box">
20
      <view ref="scroll-fold-nav" class="scroll-fold-nav">
21
        <view class="nav-title">DCloud 为开发者而生</view>
22
      </view>
23 24
      <view @click="back" class="nav-back">
        <image class="back-img" src="/static/template/scroll-fold-nav/back.png" mode="widthFix"></image>
25
      </view>
26 27 28
      <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>
29 30 31
          <text class="search-tip-text">请输入你要搜索的内容</text>
        </view>
        <text class="search-btn">搜索</text>
32 33 34 35 36 37
      </view>
    </view>

  </view>
</template>

38
<script>
39 40 41 42
  export default {
    data() {
      return {
        scrollTop: 0,
43 44 45 46
        searchWidth: 700,
        searchNode: null as INode | null,
        boxNode: null as INode | null,
        navNode: null as INode | null
47
      }
48 49 50 51 52 53 54
    },
		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;
		},
55 56
    methods: {
      onScroll(e : ScrollEvent) {
57 58
        let scrollTop = e.detail.scrollTop
        this.boxNode?.style?.setProperty('height', (110 - (scrollTop > 40 ? 40 : scrollTop)) + 'px');
59
        this.boxNode?.style?.setProperty('backgroundColor', 'rgba(255, 255, 255, ' + (scrollTop * 3 > 100 ? 100 : scrollTop * 3) / 100.0 + ')');
60 61
        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');
62
        this.searchNode?.style?.setProperty('top', 0 - (scrollTop > 40 ? 40 : scrollTop) + 'px');
63 64 65 66
        this.scrollTop = scrollTop;
      },
      back() {
        // uni.navigateBack()  // 这么写用不了
67
        // 这么写可以用
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
        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'
        });
90 91
      }
    },
92
    
93 94 95 96
  }
</script>

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

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

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

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

  .search-tip-text {
    font-size: 12px;
    color: #666;
  }

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