marc-leopold/components/GalleryImageViewer.vue

173 lines
2.8 KiB
Vue
Raw Normal View History

<template>
<div class="image-viewer"
2019-01-12 20:08:07 +00:00
:class="{ 'is-visible': isVisible }">
<div class="viewer-background"
2019-01-12 20:08:07 +00:00
:style="backgroundStyle">
</div>
<div class="image-container">
<img class="image"
:src="imageUrl">
</div>
2019-01-10 13:28:35 +00:00
<div class="close-viewer mobile-only"
@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')"/>
</div>
</template>
<script>
2019-01-10 13:28:35 +00:00
import ThumbNav from '@/components/ThumbNav'
export default {
2019-01-10 13:28:35 +00:00
components: {
ThumbNav
},
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
}
},
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 + ')'
}
}
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.image-viewer {
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;
}
.image {
width: auto;
height: auto;
max-height: 100%;
max-width: 100%;
margin: 0 auto;
top: 50%;
transform: translateY(-50%);
}
@media (max-width: $bp__layout) {
.close-viewer {
2019-01-12 20:08:07 +00:00
position: absolute;
top: 0;
right: 0;
font-size: 10em;
cursor: pointer;
}
.image-viewer {
z-index: 50;
2019-01-12 20:08:07 +00:00
position: relative;
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-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
}
.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
}
</style>