egirlskey/packages/frontend/src/components/MkReactionEffect.vue

76 lines
1.4 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
2023-01-01 03:28:30 +00:00
<template>
<div :class="$style.root" :style="{ zIndex, top: `${y - 64}px`, left: `${x - 64}px` }">
2023-01-14 08:23:49 +00:00
<span :class="[$style.text, { [$style.up]: up }]">
2023-01-08 05:22:04 +00:00
<MkReactionIcon class="icon" :reaction="reaction"/>
2023-01-07 08:37:30 +00:00
</span>
2023-01-01 03:28:30 +00:00
</div>
</template>
<script lang="ts" setup>
import { onMounted, ref } from 'vue';
2023-09-19 07:37:43 +00:00
import * as os from '@/os.js';
2023-01-08 05:22:04 +00:00
import MkReactionIcon from '@/components/MkReactionIcon.vue';
2023-01-01 03:28:30 +00:00
const props = withDefaults(defineProps<{
2023-01-07 08:37:30 +00:00
reaction: string;
2023-01-01 03:28:30 +00:00
x: number;
y: number;
}>(), {
});
const emit = defineEmits<{
(ev: 'end'): void;
}>();
const up = ref(false);
2023-01-08 08:38:33 +00:00
const zIndex = os.claimZIndex('middle');
2023-01-07 08:37:30 +00:00
const angle = (90 - (Math.random() * 180)) + 'deg';
2023-01-01 03:28:30 +00:00
onMounted(() => {
window.setTimeout(() => {
up.value = true;
2023-01-01 03:28:30 +00:00
}, 10);
window.setTimeout(() => {
emit('end');
}, 1100);
});
</script>
<style lang="scss" module>
.root {
pointer-events: none;
position: fixed;
width: 128px;
height: 128px;
2023-01-14 08:23:49 +00:00
}
2023-01-01 03:28:30 +00:00
2023-01-14 08:23:49 +00:00
.text {
display: block;
height: 1em;
text-align: center;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
color: var(--accent);
font-size: 18px;
font-weight: bold;
transform: translateY(-30px);
transition: transform 1s cubic-bezier(0,.5,0,1), opacity 1s cubic-bezier(.5,0,1,.5);
will-change: opacity, transform;
2023-01-01 03:28:30 +00:00
2023-01-14 08:23:49 +00:00
&.up {
opacity: 0;
transform: translateY(-50px) rotateZ(v-bind(angle));
2023-01-01 03:28:30 +00:00
}
}
</style>