mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
* fix(floatingPanel): Lag caused by scrollbar and panel movement * fix(floatingPanel): simplify scroll position determination
This commit is contained in:
parent
e2f041fe0a
commit
392da16c30
@ -89,13 +89,15 @@ export default defineComponent({
|
||||
return moveY;
|
||||
};
|
||||
|
||||
let startY: number;
|
||||
let startY: number,
|
||||
maxScroll: number = -1;
|
||||
const touch = useTouch();
|
||||
|
||||
const onTouchstart = (e: TouchEvent) => {
|
||||
touch.start(e);
|
||||
dragging.value = true;
|
||||
startY = -height.value;
|
||||
maxScroll = -1;
|
||||
};
|
||||
|
||||
const onTouchmove = (e: TouchEvent) => {
|
||||
@ -103,14 +105,18 @@ export default defineComponent({
|
||||
|
||||
const target = e.target as Element;
|
||||
if (contentRef.value === target || contentRef.value?.contains(target)) {
|
||||
const { scrollTop } = contentRef.value;
|
||||
// If maxScroll value more than zero, indicates that panel movement is not triggered from the top
|
||||
maxScroll = Math.max(maxScroll, scrollTop);
|
||||
|
||||
if (!props.contentDraggable) return;
|
||||
|
||||
if (-startY < boundary.value.max) {
|
||||
if (e.cancelable) e.preventDefault();
|
||||
e.stopPropagation();
|
||||
} else if (
|
||||
!(contentRef.value.scrollTop <= 0 && touch.deltaY.value > 0)
|
||||
) {
|
||||
} else if (!(scrollTop <= 0 && touch.deltaY.value > 0)) {
|
||||
return;
|
||||
} else if (maxScroll > 0) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -120,6 +126,7 @@ export default defineComponent({
|
||||
};
|
||||
|
||||
const onTouchend = () => {
|
||||
maxScroll = -1;
|
||||
dragging.value = false;
|
||||
height.value = closest(anchors.value, height.value);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user