Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
f5cac7bd
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看板
提交
f5cac7bd
编写于
7月 22, 2023
作者:
DCloud-yyl
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
添加通过scroll事件实现吸顶效果示例
搜索栏示例调整为直接操作style更新Node
上级
4afc0506
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
400 addition
and
3 deletion
+400
-3
pages.json
pages.json
+20
-0
pages/tabBar/template.uvue
pages/tabBar/template.uvue
+16
-3
pages/template/scroll-fold-nav2/scroll-fold-nav2.uvue
pages/template/scroll-fold-nav2/scroll-fold-nav2.uvue
+134
-0
pages/template/scroll-sticky/scroll-sticky.uvue
pages/template/scroll-sticky/scroll-sticky.uvue
+115
-0
pages/template/scroll-sticky2/scroll-sticky2.uvue
pages/template/scroll-sticky2/scroll-sticky2.uvue
+115
-0
未找到文件。
pages.json
浏览文件 @
f5cac7bd
...
...
@@ -653,6 +653,18 @@
"navigationStyle"
:
"custom"
}
},
{
"path"
:
"pages/template/scroll-sticky/scroll-sticky"
,
"style"
:
{
"navigationBarTitleText"
:
"滚动吸顶"
}
},
{
"path"
:
"pages/template/scroll-sticky2/scroll-sticky2"
,
"style"
:
{
"navigationBarTitleText"
:
"滚动吸顶2"
}
},
{
"path"
:
"pages/API/get-battery-info/get-battery-info"
,
"style"
:
{
...
...
@@ -667,6 +679,14 @@
"enablePullDownRefresh"
:
false
}
}
,{
"path"
:
"pages/template/scroll-fold-nav2/scroll-fold-nav2"
,
"style"
:
{
"navigationStyle"
:
"custom"
}
}
],
"globalStyle"
:
{
"pageOrientation"
:
"portrait"
,
...
...
pages/tabBar/template.uvue
浏览文件 @
f5cac7bd
...
...
@@ -51,6 +51,13 @@
name: "随滚动折叠的导航栏",
open: false,
pages: [] as Page[]
},
{
id: "scroll-fold-nav2",
url: "scroll-fold-nav2",
name: "随滚动折叠的导航栏2",
open: false,
pages: [] as Page[]
}, {
id: "swiper-list",
url: "swiper-list",
...
...
@@ -90,11 +97,17 @@
pages: [] as Page[]
},
{
id: "sticky",
url: "sticky",
id: "s
croll-s
ticky",
url: "s
croll-s
ticky",
name: "吸顶",
open: false,
enable: false,
pages: [] as Page[]
},
{
id: "scroll-sticky2",
url: "scroll-sticky2",
name: "吸顶2",
open: false,
pages: [] as Page[]
},
{
...
...
pages/template/scroll-fold-nav2/scroll-fold-nav2.uvue
0 → 100644
浏览文件 @
f5cac7bd
<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>
<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 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>
<text class="search-tip-text">请输入你要搜索的内容</text>
</view>
<text class="search-btn">搜索</text>
</view>
</view>
</view>
</template>
<script>
import ScrollEvent from 'io.dcloud.uniapp.runtime.ScrollEvent';
export default {
data() {
return {
scrollTop: 0,
searchWidth: 700,
searchNode: null as INode|null
}
},
methods: {
onScroll(e : ScrollEvent) {
let scrollTop = e.detail.scrollTop
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;
console.log('onScroll', e);
},
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'
});
}
},
onLoad() {
},
onReady() {
this.searchNode = this.$refs['search'] as INode;
}
}
</script>
<style>
.page {
flex: 1;
background-color: #fbdf0d;
}
.scroll-view {
flex: 1;
}
.top-box {
position: fixed;
top: 0;
padding-top: 25px;
align-items: flex-end;
border-bottom: 1px solid #efefef;
}
.scroll-fold-nav {
height: 44px;
width: 750rpx;
justify-content: center;
}
.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-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-sticky/scroll-sticky.uvue
0 → 100644
浏览文件 @
f5cac7bd
<template>
<scroll-view :scroll-y="true" @scroll="onScroll" class="page">
<view v-for="(item,index) in list" :key="index" class="item">
first content-{{item}}
</view>
<!-- <view ref="sticky" class="search" @click="" :style="{
'transform': 'translateY('+stickyTran+'px)'
}"> -->
<view ref="sticky" class="search" @click="">
<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 v-for="(item,index) in list" :key="index" class="item">
second content-{{item}}
</view>
<view v-for="(item,index) in list" :key="index" class="item">
second content-{{item}}
</view>
</scroll-view>
</template>
<script>
import ScrollEvent from 'io.dcloud.uniapp.runtime.ScrollEvent';
export default {
data() {
return {
list: ['1','2','3','4','5','6','7','8','9','10','11','12','13','14','15'],
stickyTop: 0,
stickyTran: 0,
scrollTop: 0,
stickyNode: null as INode | null
}
},
methods: {
onScroll(e : ScrollEvent) {
if(e.detail.scrollTop > this.stickyTop){
let stickyTran = e.detail.scrollTop - this.stickyTop;
if(stickyTran!=this.stickyTran){
this.stickyNode?.style?.setProperty('transform','translateY('+stickyTran+'px)');
}
this.stickyTran = stickyTran;
}else{
this.stickyNode?.style?.setProperty('transform','');
this.stickyTran = 0;
}
},
back(){
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)
},
})
}
},
onLoad() {
},
onReady() {
this.stickyNode = this.$refs['sticky'] as INode;
// let rect = this.stickyNode?.getBoundingClientRect();
// this.stickyTop = rect?.top;
//this.stickyTop = this.stickyNode?.getBoundingClientRect()?.top;
let rect = (this.$refs['sticky'] as INode).getBoundingClientRect();
this.stickyTop = rect.top;
}
}
</script>
<style>
.page {
flex: 1;
background-color: azure;
}
.item {
height: 100px;
}
.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-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-sticky2/scroll-sticky2.uvue
0 → 100644
浏览文件 @
f5cac7bd
<template>
<scroll-view :scroll-y="true" @scroll="onScroll" class="page">
<view v-for="(item,index) in list" :key="index" class="item">
first content-{{item}}
</view>
<view ref="sticky" class="search" @click="" :style="{
'transform': 'translateY('+stickyTran+'px)'
}">
<!-- <view ref="sticky" class="search" @click=""> -->
<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 v-for="(item,index) in list" :key="index" class="item">
second content-{{item}}
</view>
<view v-for="(item,index) in list" :key="index" class="item">
second content-{{item}}
</view>
</scroll-view>
</template>
<script>
import ScrollEvent from 'io.dcloud.uniapp.runtime.ScrollEvent';
export default {
data() {
return {
list: ['1','2','3','4','5','6','7','8','9','10','11','12','13','14','15'],
stickyTop: 0,
stickyTran: 0,
scrollTop: 0,
stickyNode: null as INode | null
}
},
methods: {
onScroll(e : ScrollEvent) {
if(e.detail.scrollTop > this.stickyTop){
let stickyTran = e.detail.scrollTop - this.stickyTop;
// this.stickyNode?.style?.setProperty('transform','translateY('+stickyTran+'px)');
this.stickyTran = stickyTran;
}else{
// this.stickyNode?.style?.setProperty('transform','');
this.stickyTran = 0;
}
},
back(){
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)
},
})
}
},
onLoad() {
},
onReady() {
this.stickyNode = this.$refs['sticky'] as INode;
// let rect = this.stickyNode?.getBoundingClientRect();
// this.stickyTop = rect?.top;
let rect = (this.$refs['sticky'] as INode).getBoundingClientRect();
this.stickyTop = rect.top;
}
}
</script>
<style>
.page {
flex: 1;
background-color: azure;
}
.item {
height: 100px;
}
.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-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
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录