mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
fix(ImagePreview): allow user to swipe to next image when the current image is moved to the edge (#12666)
This commit is contained in:
parent
2b9abfe174
commit
f70feab438
@ -190,6 +190,7 @@ export default defineComponent({
|
||||
doubleScale={props.doubleScale}
|
||||
closeOnClickImage={props.closeOnClickImage}
|
||||
closeOnClickOverlay={props.closeOnClickOverlay}
|
||||
vertical={props.vertical}
|
||||
onScale={emitScale}
|
||||
onClose={emitClose}
|
||||
onLongPress={() => emit('longPress', { index })}
|
||||
|
@ -56,6 +56,7 @@ const imagePreviewItemProps = {
|
||||
doubleScale: Boolean,
|
||||
closeOnClickImage: Boolean,
|
||||
closeOnClickOverlay: Boolean,
|
||||
vertical: Boolean,
|
||||
};
|
||||
|
||||
export type ImagePreviewItemProps = ExtractPropTypes<
|
||||
@ -225,9 +226,10 @@ export default defineComponent({
|
||||
// if the image is moved to the edge, no longer trigger move,
|
||||
// allow user to swipe to next image
|
||||
if (
|
||||
(moveX > maxMoveX.value || moveX < -maxMoveX.value) &&
|
||||
!isImageMoved &&
|
||||
touch.isHorizontal()
|
||||
(props.vertical
|
||||
? touch.isVertical() && Math.abs(moveY) > maxMoveY.value
|
||||
: touch.isHorizontal() && Math.abs(moveX) > maxMoveX.value) &&
|
||||
!isImageMoved
|
||||
) {
|
||||
state.moving = false;
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user