Files
pihkaal-me/app/components/Contact/TopScreen/Background.vue

19 lines
387 B
Vue

<script setup lang="ts">
const store = useContactStore();
const { assets } = useAssets();
useRender((ctx) => {
ctx.drawImage(assets.home.topScreen.background, 0, 0);
ctx.globalAlpha = store.isIntro
? store.intro.stage2Opacity
: store.outro.stage3Opacity;
ctx.drawImage(assets.contact.topScreen.background, 0, 0);
});
defineOptions({
render: () => null,
});
</script>