mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(ImagePreview): incorrectly closed after zooming (#10191)
This commit is contained in:
parent
6ed16c0770
commit
708c3af769
@ -139,11 +139,12 @@ export default {
|
|||||||
this.touchStart(event);
|
this.touchStart(event);
|
||||||
this.touchStartTime = new Date();
|
this.touchStartTime = new Date();
|
||||||
|
|
||||||
|
this.fingerNum = touches.length;
|
||||||
this.startMoveX = this.moveX;
|
this.startMoveX = this.moveX;
|
||||||
this.startMoveY = this.moveY;
|
this.startMoveY = this.moveY;
|
||||||
|
|
||||||
this.moving = touches.length === 1 && this.scale !== 1;
|
this.moving = this.fingerNum === 1 && this.scale !== 1;
|
||||||
this.zooming = touches.length === 2 && !offsetX;
|
this.zooming = this.fingerNum === 2 && !offsetX;
|
||||||
|
|
||||||
if (this.zooming) {
|
if (this.zooming) {
|
||||||
this.startScale = this.scale;
|
this.startScale = this.scale;
|
||||||
@ -216,10 +217,14 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
checkTap() {
|
checkTap() {
|
||||||
|
if (this.fingerNum > 1) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const { offsetX = 0, offsetY = 0 } = this;
|
const { offsetX = 0, offsetY = 0 } = this;
|
||||||
const deltaTime = new Date() - this.touchStartTime;
|
const deltaTime = new Date() - this.touchStartTime;
|
||||||
const TAP_TIME = 250;
|
const TAP_TIME = 250;
|
||||||
const TAP_OFFSET = 10;
|
const TAP_OFFSET = 5;
|
||||||
|
|
||||||
if (
|
if (
|
||||||
offsetX < TAP_OFFSET &&
|
offsetX < TAP_OFFSET &&
|
||||||
|
Loading…
x
Reference in New Issue
Block a user