You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
1.1 KiB

<template>
<div class="full-image" v-show="visible" :before-close="onClose" :modal="true">
<div class="mask"></div>
2 years ago
<div class="image-box">
<img :src="url"/>
2 years ago
</div>
<div class="close" @click="onClose">x</div>
</div>
</template>
<script>
export default {
name: "fullImage",
data() {
return {
fit: 'contain'
}
},
methods: {
onClose() {
this.$emit("close");
}
},
props: {
visible: {
type: Boolean
},
url: {
type: String
}
}
}
</script>
<style lang="scss">
.full-image{
position: fixed;
width: 100%;
height: 100%;
.mask{
position: fixed;
width: 100%;
height: 100%;
background: black;
opacity: 0.9;
}
.image-box {
position: relative;
width: 100%;
height: 100%;
img{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
max-height: 100%;
max-width: 100%;
}
}
.close{
position: fixed;
top: 10px;
right: 10px;
color: white;
font-size: 25px;
cursor: pointer;
}
}
2 years ago
</style>