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.
86 lines
1.2 KiB
86 lines
1.2 KiB
<template>
|
|
<div class="full-image" v-if="show" :before-close="close" :modal="true">
|
|
<div class="mask"></div>
|
|
<div class="image-box">
|
|
<img :src="url" />
|
|
</div>
|
|
<div class="close" @click="close"><i class="el-icon-close"></i></div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "fullImage",
|
|
data() {
|
|
return {
|
|
show: false,
|
|
url: ''
|
|
}
|
|
},
|
|
methods: {
|
|
open(url) {
|
|
this.show = true;
|
|
this.url = url;
|
|
},
|
|
close() {
|
|
this.show = false;
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.full-image {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
|
|
.mask {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: black;
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
.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 {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: fixed;
|
|
top: 20px;
|
|
right: 20px;
|
|
cursor: pointer;
|
|
background: #333;
|
|
border-radius: 50%;
|
|
padding: 10px;
|
|
opacity: 0.5;
|
|
|
|
i {
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
color: white;
|
|
}
|
|
}
|
|
}
|
|
</style>
|