mirror of
https://github.com/wukko/cobalt.git
synced 2025-06-13 05:37:44 +02:00
web/Meowbalt: fade in meowbalt assets on load
This commit is contained in:
@ -2,14 +2,22 @@
|
||||
import { t } from "$lib/i18n/translations";
|
||||
import type { MeowbaltEmotions } from "$lib/types/meowbalt";
|
||||
|
||||
export let emotion: MeowbaltEmotions;
|
||||
type Props = {
|
||||
emotion: MeowbaltEmotions;
|
||||
};
|
||||
|
||||
const { emotion }: Props = $props();
|
||||
|
||||
let loaded = $state(false);
|
||||
</script>
|
||||
|
||||
<img
|
||||
class="meowbalt {emotion}"
|
||||
class:loaded
|
||||
onload={() => (loaded = true)}
|
||||
src="/meowbalt/{emotion}.png"
|
||||
height="152"
|
||||
alt={$t('general.meowbalt')}
|
||||
alt={$t("general.meowbalt")}
|
||||
aria-hidden="true"
|
||||
/>
|
||||
|
||||
@ -18,6 +26,12 @@
|
||||
display: block;
|
||||
margin: 0;
|
||||
object-fit: cover;
|
||||
opacity: 0;
|
||||
transition: opacity 0.15s;
|
||||
}
|
||||
|
||||
.meowbalt.loaded {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.error {
|
||||
|
Reference in New Issue
Block a user