mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix: corrected horizontal slip judgment (#8387)
This commit is contained in:
parent
c92aef17da
commit
bd4eaf9f8f
@ -28,7 +28,8 @@ export const TouchMixin = {
|
|||||||
|
|
||||||
touchMove(event) {
|
touchMove(event) {
|
||||||
const touch = event.touches[0];
|
const touch = event.touches[0];
|
||||||
this.deltaX = touch.clientX - this.startX;
|
// Fix: Safari back will set clientX to negative number
|
||||||
|
this.deltaX = touch.clientX < 0 ? 0 : touch.clientX - this.startX;
|
||||||
this.deltaY = touch.clientY - this.startY;
|
this.deltaY = touch.clientY - this.startY;
|
||||||
this.offsetX = Math.abs(this.deltaX);
|
this.offsetX = Math.abs(this.deltaX);
|
||||||
this.offsetY = Math.abs(this.deltaY);
|
this.offsetY = Math.abs(this.deltaY);
|
||||||
|
@ -48,10 +48,22 @@ export function trigger(
|
|||||||
// simulate drag gesture
|
// simulate drag gesture
|
||||||
export function triggerDrag(
|
export function triggerDrag(
|
||||||
el: Wrapper<Vue> | HTMLElement,
|
el: Wrapper<Vue> | HTMLElement,
|
||||||
x = 0,
|
relativeX = 0,
|
||||||
y = 0
|
relativeY = 0
|
||||||
): void {
|
): void {
|
||||||
trigger(el, 'touchstart', 0, 0);
|
let x = relativeX;
|
||||||
|
let y = relativeY;
|
||||||
|
let startX = 0;
|
||||||
|
let startY = 0;
|
||||||
|
if (relativeX < 0) {
|
||||||
|
startX = Math.abs(relativeX);
|
||||||
|
x = 0;
|
||||||
|
}
|
||||||
|
if (relativeY < 0) {
|
||||||
|
startY = Math.abs(relativeY);
|
||||||
|
y = 0;
|
||||||
|
}
|
||||||
|
trigger(el, 'touchstart', startX, startY);
|
||||||
trigger(el, 'touchmove', x / 4, y / 4);
|
trigger(el, 'touchmove', x / 4, y / 4);
|
||||||
trigger(el, 'touchmove', x / 3, y / 3);
|
trigger(el, 'touchmove', x / 3, y / 3);
|
||||||
trigger(el, 'touchmove', x / 2, y / 2);
|
trigger(el, 'touchmove', x / 2, y / 2);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user