提交 5a574ce3 编写于 作者: DCloud-yyl's avatar DCloud-yyl

更新半屏弹出示例

上级 d55b8d7f
...@@ -130,14 +130,13 @@ ...@@ -130,14 +130,13 @@
open: false, open: false,
pages: [] as Page[], pages: [] as Page[],
}, },
// { {
// id: 'half-screen', id: 'half-screen',
// url: 'half-screen', url: 'half-screen',
// name: '半屏弹窗', name: '半屏弹窗',
// open: false, open: false,
// enable: false, pages: [] as Page[],
// pages: [] as Page[], },
// },
{ {
id: 'drop-card', id: 'drop-card',
url: 'drop-card', url: 'drop-card',
...@@ -226,4 +225,4 @@ ...@@ -226,4 +225,4 @@
<style> <style>
@import '../../common/uni-uvue.css'; @import '../../common/uni-uvue.css';
</style> </style>
\ No newline at end of file
<template> <template>
<view class="page"> <view id="page" class="page">
<text>TouchEvent还有细节需要优化,需支持拦截事件分发逻辑解决拖拽半屏窗口引起内容滚动的问题</text> <text>TouchEvent还有细节需要优化,需支持拦截事件分发逻辑解决拖拽半屏窗口引起内容滚动的问题</text>
<button class="bottomButton" @click="switchHalfScreen(true)">打开弹窗</button> <button class="bottomButton" @click="switchHalfScreen(true)">打开弹窗</button>
<view ref="halfScreen" class="halfScreen" @touchstart="onHalfTouchStart" @touchmove="onHalfTouchMove" @touchend="onHalfTouchEnd"> <view id="halfScreen" class="halfScreen" @touchstart="onHalfTouchStart" @touchmove="onHalfTouchMove" @touchend="onHalfTouchEnd">
<view class="halfTitle" >半屏弹窗标题</view> <view class="halfTitle" >半屏弹窗标题</view>
<scroll-view ref="halfScroll" class="halfScroll" @scroll="onScroll" bounce="true"> <scroll-view id="halfScroll" class="halfScroll" @scroll="onScroll" rebound="true">
<view v-for="(item,index) in list" :key="index" class="item"> <view v-for="(item,index) in list" :key="index" class="item">
half screen content-{{item}} half screen content-{{item}}
</view> </view>
...@@ -48,22 +48,32 @@ ...@@ -48,22 +48,32 @@
this.halfScreenY = p.screenY; this.halfScreenY = p.screenY;
} }
let offset = p.screenY-this.halfScreenY; let offset = p.screenY-this.halfScreenY;
if(offset > 0){ if(offset > 0){//向下滚动
this.halfMove = true; this.halfMove = true;
this.scrollNode?.setAttribute('scroll-y', 'false');
this.halfNode?.style?.setProperty('transform','translateY('+offset+'px)'); this.halfNode?.style?.setProperty('transform','translateY('+offset+'px)');
if(offset==0){
console.log('translateY(0px)', this.halfOffset)
}
this.halfOffset = offset; this.halfOffset = offset;
}else if(this.lastY2>this.lastY && this.halfOffset>0){//容错触发向下滚动的误差 }else if(this.halfOffset>0){//向上滚动
offset = this.halfScreenY-p.screenY; offset = this.halfScreenY-p.screenY;
if(offset>this.halfOffset){ if(offset>this.halfOffset){
offset = this.halfOffset; offset = 0;
this.halfMove = false;
this.scrollNode?.setAttribute('scroll-y', 'true');
} }
this.halfNode?.style?.setProperty('transform','translateY('+offset+'px)'); this.halfNode?.style?.setProperty('transform','translateY('+offset+'px)');
if(offset==0){
console.log('translateY(0px)', this.halfOffset)
}
this.halfOffset = offset; this.halfOffset = offset;
} }
} }
//console.log('TouchMove', e.target); //console.log('TouchMove', e.target);
}, },
onHalfTouchEnd(_:TouchEvent) { onHalfTouchEnd(_:TouchEvent) {
this.halfScreenY = 0;
if(this.bAnimation){//容错处理 if(this.bAnimation){//容错处理
return; return;
} }
...@@ -76,7 +86,7 @@ ...@@ -76,7 +86,7 @@
} }
if(bHide){ if(bHide){
this.switchHalfScreen(false); this.switchHalfScreen(false);
}else{ }else if(this.halfOffset>0){
this.resumeHalfScreen(); this.resumeHalfScreen();
} }
}, },
...@@ -89,6 +99,7 @@ ...@@ -89,6 +99,7 @@
return; return;
} }
this.halfMove = false; this.halfMove = false;
this.scrollNode?.setAttribute('scroll-y', 'true');
this.halfScreenY = 0; this.halfScreenY = 0;
this.halfOffset = 0; this.halfOffset = 0;
let top = this.totalHeight; let top = this.totalHeight;
...@@ -103,7 +114,7 @@ ...@@ -103,7 +114,7 @@
} }
this.halfNode?.style?.setProperty('transitionDuration', time.toFixed(0)); this.halfNode?.style?.setProperty('transitionDuration', time.toFixed(0));
this.halfNode?.style?.setProperty('transitionProperty','top'); this.halfNode?.style?.setProperty('transitionProperty','top');
this.halfNode?.style?.setProperty('top', top.toFixed(0)); this.halfNode?.style?.setProperty('top', top.toFixed(2));
setTimeout(()=>{ setTimeout(()=>{
if(!show){ if(!show){
this.halfNode?.style?.setProperty('visibility','hidden'); this.halfNode?.style?.setProperty('visibility','hidden');
...@@ -122,6 +133,7 @@ ...@@ -122,6 +133,7 @@
this.halfNode?.style?.setProperty('transitionProperty','transform'); this.halfNode?.style?.setProperty('transitionProperty','transform');
this.halfNode?.style?.setProperty('transform','translateY(0px)'); this.halfNode?.style?.setProperty('transform','translateY(0px)');
this.halfMove = false; this.halfMove = false;
this.scrollNode?.setAttribute('scroll-y', 'true');
this.halfScreenY = 0; this.halfScreenY = 0;
this.halfOffset = 0; this.halfOffset = 0;
setTimeout(()=>{ setTimeout(()=>{
...@@ -131,17 +143,13 @@ ...@@ -131,17 +143,13 @@
} }
}, },
onReady() { onReady() {
this.halfNode = this.$refs['halfScreen'] as Element; this.halfNode = uni.getElementById('halfScreen');
this.halfHeight = this.halfNode!.getBoundingClientRect().height; this.halfHeight = this.halfNode!.getBoundingClientRect().height;
this.scrollNode = this.$refs['halfScroll'] as Element; this.scrollNode = uni.getElementById('halfScroll');
this.totalHeight = uni.getWindowInfo().windowHeight; this.totalHeight = uni.getElementById('page')?.getBoundingClientRect()?.height??0;//uni.getWindowInfo().windowHeight;
this.halfNode?.style?.setProperty('top', this.totalHeight.toString()); this.halfNode?.style?.setProperty('top', this.totalHeight.toString());
}, },
// onResize() {
// this.halfHeight = this.halfNode!.getBoundingClientRect().height;
// this.totalHeight = uni.getWindowInfo().windowHeight;
// }
} }
</script> </script>
...@@ -169,11 +177,11 @@ ...@@ -169,11 +177,11 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
height: 48px; height: 48px;
background-color: cornflowerblue; background-color: ghostwhite;
border-radius: 10px 10px 0 0; border-radius: 10px 10px 0 0;
} }
.halfScroll { .halfScroll {
background-color: ghostwhite; background-color: white;
} }
.item { .item {
height: 100px; height: 100px;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册