2019-01-04 14:34:32 +00:00
|
|
|
<template>
|
|
|
|
<div class="image-viewer"
|
2019-01-12 20:08:07 +00:00
|
|
|
:class="{ 'is-visible': isVisible }">
|
2019-01-13 10:35:38 +00:00
|
|
|
<div class="viewer-background"
|
2019-01-12 20:08:07 +00:00
|
|
|
:style="backgroundStyle">
|
|
|
|
</div>
|
2019-01-13 10:35:38 +00:00
|
|
|
<div class="image-container">
|
|
|
|
<img class="image"
|
|
|
|
:src="imageUrl">
|
|
|
|
</div>
|
2019-01-10 13:28:35 +00:00
|
|
|
<div class="close-viewer mobile-only"
|
2019-01-04 14:34:32 +00:00
|
|
|
@click="$emit('close')">
|
|
|
|
X
|
|
|
|
</div>
|
2019-01-10 13:28:35 +00:00
|
|
|
<ThumbNav v-if="hasPrev"
|
|
|
|
class="thumb-nav thumb-nav--left mobile-only"
|
|
|
|
direction="left"
|
|
|
|
@navClick="$emit('clickPrev')"/>
|
|
|
|
<ThumbNav v-if="hasNext"
|
|
|
|
class="thumb-nav thumb-nav--right mobile-only"
|
|
|
|
direction="right"
|
|
|
|
@navClick="$emit('clickNext')"/>
|
2019-01-04 14:34:32 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2019-01-10 13:28:35 +00:00
|
|
|
import ThumbNav from '@/components/ThumbNav'
|
|
|
|
|
2019-01-04 14:34:32 +00:00
|
|
|
export default {
|
2019-01-10 13:28:35 +00:00
|
|
|
components: {
|
|
|
|
ThumbNav
|
|
|
|
},
|
2019-01-04 14:34:32 +00:00
|
|
|
props: {
|
|
|
|
isVisible: {
|
|
|
|
type: Boolean,
|
|
|
|
required: true
|
2019-01-09 21:23:03 +00:00
|
|
|
},
|
|
|
|
imageUrl: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
default () {
|
|
|
|
return ''
|
|
|
|
}
|
2019-01-10 13:28:35 +00:00
|
|
|
},
|
|
|
|
hasNext: {
|
|
|
|
type: Boolean,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
hasPrev: {
|
|
|
|
type: Boolean,
|
|
|
|
required: true
|
2019-01-04 14:34:32 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2019-01-09 21:23:03 +00:00
|
|
|
computed: {
|
2019-01-12 20:08:07 +00:00
|
|
|
backgroundStyle () {
|
2019-01-09 21:23:03 +00:00
|
|
|
return {
|
|
|
|
backgroundImage: 'url(' + this.imageUrl + ')'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2019-01-04 14:34:32 +00:00
|
|
|
methods: {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.image-viewer {
|
2019-01-13 10:35:38 +00:00
|
|
|
background-color: #222;
|
2019-01-12 20:08:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.image-container {
|
2019-01-10 13:28:35 +00:00
|
|
|
background-size: contain;
|
|
|
|
background-repeat: no-repeat;
|
2019-01-12 20:08:07 +00:00
|
|
|
background-color: transparent;
|
2019-01-04 14:34:32 +00:00
|
|
|
}
|
|
|
|
|
2019-01-13 10:35:38 +00:00
|
|
|
.image {
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
max-height: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
margin: 0 auto;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
}
|
|
|
|
|
2019-01-04 14:34:32 +00:00
|
|
|
@media (max-width: $bp__layout) {
|
|
|
|
.close-viewer {
|
2019-01-12 20:08:07 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2019-01-04 14:34:32 +00:00
|
|
|
font-size: 10em;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.image-viewer {
|
|
|
|
z-index: 50;
|
2019-01-12 20:08:07 +00:00
|
|
|
position: relative;
|
2019-01-04 14:34:32 +00:00
|
|
|
|
|
|
|
transition: opacity 1s; //TEMP
|
|
|
|
opacity: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
&.is-visible {
|
|
|
|
opacity: 1;
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
}
|
2019-01-12 20:08:07 +00:00
|
|
|
|
|
|
|
.image-container {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
background-position: center center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thumb-nav {
|
|
|
|
position: absolute;
|
|
|
|
width: 50%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
|
|
|
|
&--left {
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--right {
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
}
|
2019-01-04 14:34:32 +00:00
|
|
|
}
|
2019-01-09 21:23:03 +00:00
|
|
|
|
|
|
|
@media (min-width: $bp__layout) {
|
2019-01-10 13:28:35 +00:00
|
|
|
.mobile-only {
|
2019-01-09 21:23:03 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2019-01-10 13:28:35 +00:00
|
|
|
|
|
|
|
.image-viewer {
|
2019-01-12 20:08:07 +00:00
|
|
|
padding: 1rem 1rem 1rem 4rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.image-container {
|
|
|
|
position: absolute;
|
|
|
|
top: 8px;
|
|
|
|
left: calc(3rem + 8px);
|
|
|
|
right: 20rem;
|
|
|
|
bottom: 8px;
|
|
|
|
background-position: top center;
|
2019-01-10 13:28:35 +00:00
|
|
|
}
|
2019-01-13 10:35:38 +00:00
|
|
|
|
|
|
|
.viewer-background {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
background-size: 100% 100%;
|
|
|
|
background-position: center center;
|
|
|
|
filter: blur(100px);
|
|
|
|
opacity: .3;
|
|
|
|
}
|
2019-01-09 21:23:03 +00:00
|
|
|
}
|
2019-01-04 14:34:32 +00:00
|
|
|
</style>
|