Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
f5e2d9b0
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
f5e2d9b0
编写于
8月 16, 2023
作者:
M
mehaotian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
perf: 优化滚动折叠示例的样式,调整部分代码结构
上级
711ac6c4
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
282 addition
and
161 deletion
+282
-161
pages/template/scroll-fold-nav/scroll-fold-header/scroll-fold-header.uvue
...croll-fold-nav/scroll-fold-header/scroll-fold-header.uvue
+115
-78
pages/template/scroll-fold-nav/scroll-fold-nav.uvue
pages/template/scroll-fold-nav/scroll-fold-nav.uvue
+85
-55
pages/template/scroll-fold-nav2/scroll-fold-nav2.uvue
pages/template/scroll-fold-nav2/scroll-fold-nav2.uvue
+82
-28
未找到文件。
pages/template/scroll-fold-nav/scroll-fold-header/scroll-fold-header.uvue
浏览文件 @
f5e2d9b0
<template>
<view class="top-box" :style="{height:(110 - (scrollTop>40?40:scrollTop) )+'px','background-color': 'rgba(255, 255, 255, '+(scrollTop*3>100?100:scrollTop*3)/100+')'}">
<view class="scroll-fold-nav"
:style="{'opacity': 1 -(scrollTop*3>100?100:scrollTop*3)/100}"
>
<view style="margin-left: 30px;">DCloud 为开发者而生</view>
</view>
<view @click="back" class="back" style="position: absolute;top:35px;left: 8px;">
<image src="/static/template/scroll-fold-nav/back.png" style="width: 20px;" mode="widthFix"></image>
</view>
<view class="search" @click="toSearchPage" :style="{
'width':maxSearchWidth - (scrollTop>40?40:scrollTop) +'rpx',
'top':0 - (scrollTop>40?40:scrollTop) +'px'
}">
<view style="flex-direction: row;">
<image src="/static/template/scroll-fold-nav/search.png" style="width: 15px;" mode="widthFix"></image>
<text class="search-tip-text">请输入你要搜索的内容</text>
</view>
<text class="search-btn">搜索</text>
</view>
</view>
</template>
<script>
export default {
data() {
return {
scrollTop: 0,
maxSearchWidth: 700
}
},
methods: {
toSearchPage(){
this.$emit('toSearchPage')
},
back(){
this.$emit('back')
}
}
}
</script>
<style>
.top-box {
position: fixed;
top: 0;
padding-top: 25px;
align-items: flex-end;
border-bottom: 1px solid #efefef;
}
<template>
<view class="top-box" :style="headBoxStyle">
<view class="scroll-fold-nav" :style="titleStyle">
<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 class="search" @click="toSearchPage" :style="{
'width':maxSearchWidth - (scrollTop>40?40:scrollTop) +'rpx',
'top':0 - (scrollTop>40?40:scrollTop) +'px'
}">
<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>
</template>
.scroll-fold-nav {
height: 44px;
width: 750rpx;
justify-content: center;
}
<script>
export default {
data() {
return {
scrollTop: 0,
maxSearchWidth: 700
}
},
computed: {
// 修理导航栏头部高度和背景颜色变化
headBoxStyle() : string {
const scrollTop = this.scrollTop
let style = `height: ${110 - (scrollTop > 40 ? 40 : scrollTop)}px;background-color: rgba(255, 255, 255, ${(scrollTop * 3 > 100 ? 100 : scrollTop * 3) / 100})`
return style
},
// 处理导航栏标题透明度变化
titleStyle() : string {
const scrollTop = this.scrollTop
let style = `opacity: ${1 - (scrollTop * 3 > 100 ? 100 : scrollTop * 3) / 100}`
return style
}
},
methods: {
toSearchPage() {
this.$emit('toSearchPage')
},
back() {
this.$emit('back')
}
}
}
</script>
.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;
}
<style>
.top-box {
position: fixed;
top: 0;
padding-top: 25px;
align-items: flex-end;
border-bottom: 1px solid #efefef;
}
.search-tip-text {
font-size: 12px;
color: #666;
}
.scroll-fold-nav {
height: 44px;
width: 750rpx;
justify-content: center;
}
.search-btn {
font-size: 12px;
background-color: #ff6900;
color: #FFF;
padding: 5px 8px;
border-radius: 100px;
}
</style>
.nav-title {
margin-left: 30px;
}
.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;
}
.search-inner {
margin-top: 2px;
flex-direction: row;
}
.search-inner .search-img {
width: 15px;
}
.search-tip-text {
font-size: 12px;
color: #666;
}
.search-btn {
font-size: 12px;
background-color: #ff6900;
color: #FFF;
padding: 5px 8px;
border-radius: 100px;
}
</style>
\ No newline at end of file
pages/template/scroll-fold-nav/scroll-fold-nav.uvue
浏览文件 @
f5e2d9b0
<template>
<view class="page">
<scroll-view :scroll-y="true" @scroll="onScroll" class="scroll-view">
<view class="content">
<view style="height: 110px;">
<!-- 垫高专用 -->
</view>
<view v-for="(item,index) in 20" :key="index" style="height: 100px;background-color: #FFF;">
content-{{item}}
</view>
</view>
</scroll-view>
<scroll-fold-header ref="header" @back="back" @toSearchPage="toSearchPage()"/>
</view>
<view class="page">
<scroll-view :scroll-y="true" @scroll="onScroll" class="scroll-view">
<view class="height-seat">
<!-- 垫高专用 -->
</view>
<view class="content">
<view class="content-item">
<text class="text">1. 当前示例监听了 scroll-view 的 scroll 事件 ,滚动页面实时监听 scrollTop。</text>
<text class="text">2. 在模板中根据 scrollTop 的变化,通过 style 修改搜索导航栏的高度、位置和背景颜色等样式,从而达到滚动折叠的效果。</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>
</view>
</view>
</scroll-view>
<scroll-fold-header ref="header" @back="back" @toSearchPage="toSearchPage()" />
</view>
</template>
<script>
import ScrollEvent from 'io.dcloud.uniapp.runtime.ScrollEvent';
import scrollFoldHeader from './scroll-fold-header/scroll-fold-header.uvue';
export default {
components:{scrollFoldHeader
},
data() {
return {}
},
methods: {
onScroll(e : ScrollEvent) {
(this.$refs['header'] as ComponentPublicInstance).$data['scrollTop'] = (e.detail.scrollTop<0?0:
e.detail.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)
},
})
},
toSearchPage() {
uni.showToast({
title: '暂不支持',
icon: 'none'
});
}
},
onLoad() {
}
}
import ScrollEvent from 'io.dcloud.uniapp.runtime.ScrollEvent';
import scrollFoldHeader from './scroll-fold-header/scroll-fold-header.uvue';
export default {
components: { scrollFoldHeader
},
data() {
return {}
},
methods: {
onScroll(e : ScrollEvent) {
(this.$refs['header'] as ComponentPublicInstance).$data['scrollTop'] = (e.detail.scrollTop < 0 ? 0 :
e.detail.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)
},
})
},
toSearchPage() {
uni.showToast({
title: '暂不支持',
icon: 'none'
});
}
},
onLoad() {
}
}
</script>
<style>
.page {
flex: 1;
background-color: #fbdf0d;
}
.page {
flex: 1;
background-color: #fbdf0d;
/* background-color: #f5f5f5; */
}
.scroll-view {
flex: 1;
}
.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;
}
</style>
\ No newline at end of file
pages/template/scroll-fold-nav2/scroll-fold-nav2.uvue
浏览文件 @
f5e2d9b0
<template>
<view class="page">
<scroll-view :scroll-y="true" @scroll="onScroll" class="scroll-view" bounces="false">
<view class="content">
<view style="height: 110px;">
<!-- 垫高专用 -->
</view>
<view v-for="(item,index) in 20" :key="index" style="height: 100px;background-color: #FFF;">
content-{{item}}
<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>
</view>
</view>
</scroll-view>
<view ref="top-box" class="top-box"
style="height:110px;background-color:rgba(255,255,255,0)"
>
<view ref="top-box" class="top-box">
<view ref="scroll-fold-nav" class="scroll-fold-nav">
<view
style="margin-left: 30px;
">DCloud 为开发者而生</view>
<view
class="nav-title
">DCloud 为开发者而生</view>
</view>
<view @click="back" class="
back" style="position: absolute;top:35px;left: 8px;
">
<image
src="/static/template/scroll-fold-nav/back.png" style="width: 20px;
" mode="widthFix"></image>
<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"
style="width:700rpx;top:0px"
>
<view
style="flex-direction: row;
">
<image
src="/static/template/scroll-fold-nav/search.png" style="width: 15px;
" mode="widthFix"></image>
<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>
...
...
@@ -41,7 +46,13 @@
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;
},
methods: {
onScroll(e : ScrollEvent) {
let scrollTop = e.detail.scrollTop
...
...
@@ -79,13 +90,7 @@
});
}
},
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;
}
}
</script>
...
...
@@ -97,22 +102,60 @@
.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;
}
.top-box {
position: fixed;
top: 0;
padding-top: 25px;
align-items: flex-end;
border-bottom: 1px solid #efefef;
border-bottom: 1px solid #efefef;
height:110px;
background-color:rgba(255,255,255,0)
}
.scroll-fold-nav {
height: 44px;
width: 750rpx;
justify-content: center;
}
}
.nav-title {
margin-left: 30px;
}
.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;
...
...
@@ -122,8 +165,19 @@
padding: 8px;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
justify-content: space-between;
width:700rpx;
top:0px
}
.search-inner {
margin-top: 2px;
flex-direction: row;
}
.search-inner .search-img {
width: 15px;
}
.search-tip-text {
font-size: 12px;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录