yumechi-no-kuni/src/client/app/mobile/views/components/notify.vue

64 lines
1 KiB
Vue
Raw Normal View History

2018-02-15 06:29:59 -06:00
<template>
<div class="mk-notify">
2018-09-03 21:34:36 -05:00
<div>
<mk-notification-preview :notification="notification"/>
</div>
2018-02-15 06:29:59 -06:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import * as anime from 'animejs';
export default Vue.extend({
props: ['notification'],
mounted() {
2018-02-18 03:40:24 -06:00
this.$nextTick(() => {
2018-02-15 06:29:59 -06:00
anime({
targets: this.$el,
bottom: '0px',
duration: 500,
easing: 'easeOutQuad'
});
setTimeout(() => {
anime({
targets: this.$el,
2018-09-04 05:19:51 -05:00
bottom: `-${this.$el.offsetHeight}px`,
2018-02-15 06:29:59 -06:00
duration: 500,
easing: 'easeOutQuad',
complete: () => this.$destroy()
});
}, 6000);
});
}
});
</script>
<style lang="stylus" scoped>
.mk-notify
2018-09-04 05:19:51 -05:00
$height = 78px
2018-02-15 06:29:59 -06:00
position fixed
z-index 1024
2018-09-04 05:19:51 -05:00
bottom -($height)
2018-02-15 06:29:59 -06:00
left 0
2018-09-03 21:34:36 -05:00
right 0
2018-02-15 06:29:59 -06:00
width 100%
2018-09-03 21:34:36 -05:00
max-width 500px
2018-09-04 05:19:51 -05:00
height $height
2018-09-03 21:34:36 -05:00
margin 0 auto
padding 8px
2018-02-15 06:29:59 -06:00
pointer-events none
2018-09-03 21:34:36 -05:00
font-size 80%
> div
height 100%
-webkit-backdrop-filter blur(2px)
backdrop-filter blur(2px)
background-color rgba(#000, 0.5)
2018-09-04 05:19:51 -05:00
border-radius 7px
overflow hidden
2018-02-15 06:29:59 -06:00
</style>