vant/packages/image-preview/image-preview.vue
2018-07-10 21:13:55 +08:00

71 lines
1.3 KiB
Vue

<template>
<div
v-if="value"
:class="b()"
@touchstart="onTouchStart"
@touchend="onTouchEnd"
@touchcancel="onTouchEnd"
>
<swipe :initial-swipe="startPosition" ref="swipe">
<swipe-item v-for="(item, index) in images" :key="index">
<img :class="b('image')" :src="item" >
</swipe-item>
</swipe>
</div>
</template>
<script>
import create from '../utils/create';
import Popup from '../mixins/popup';
import Swipe from '../swipe';
import SwipeItem from '../swipe-item';
export default create({
name: 'image-preview',
mixins: [Popup],
components: {
Swipe,
SwipeItem
},
props: {
images: {
type: Array,
default: () => []
},
startPosition: {
type: Number,
default: 0
},
overlay: {
type: Boolean,
default: true
},
closeOnClickOverlay: {
type: Boolean,
default: true
}
},
methods: {
onTouchStart() {
this.touchStartTime = new Date();
},
onTouchEnd(event) {
event.preventDefault();
const deltaTime = new Date() - this.touchStartTime;
const { offsetX, offsetY } = this.$refs.swipe;
// prevent long tap to close component
if (deltaTime < 500 && offsetX < 10 && offsetY < 10) {
this.$emit('input', false);
}
}
}
});
</script>