Add fade animation to overlay comp
This commit is contained in:
parent
38657ce31a
commit
c7446fd49f
|
@ -1,4 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
|
<transition name="fade">
|
||||||
<div class="overlay">
|
<div class="overlay">
|
||||||
<button type="button" class="close-button" @click="closeOverlay">x</button>
|
<button type="button" class="close-button" @click="closeOverlay">x</button>
|
||||||
<h1>{{ title }}</h1>
|
<h1>{{ title }}</h1>
|
||||||
|
@ -6,6 +7,7 @@
|
||||||
<slot/>
|
<slot/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</transition>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
|
@ -25,13 +27,21 @@ export default class BaseOverlay extends Vue {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="postcss">
|
<style scoped lang="postcss">
|
||||||
|
.fade-enter-active,
|
||||||
|
.fade-leave-active {
|
||||||
|
transition: opacity 0.5s;
|
||||||
|
}
|
||||||
|
.fade-enter,
|
||||||
|
.fade-leave-to {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
.overlay {
|
.overlay {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
transform: translateY(-50%);
|
transform: translateY(-50%);
|
||||||
background-color: var(--bg-color);
|
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
|
background-color: var(--bg-color);
|
||||||
}
|
}
|
||||||
.overlay-inner {
|
.overlay-inner {
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user