You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
memory/src/views/HomeView.vue

38 lines
663 B
Vue

<script setup lang="ts">
import { ref } from 'vue'
import CoverImage from '@/assets/cover01.jpg'
const firstLoad = ref(true)
</script>
<template>
<div v-if="firstLoad"
id="cover"
@click="firstLoad = false"
>
click anywhere to start
</div>
<div v-else>
... game not yet implemented ...
</div>
</template>
<style scoped>
#cover {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: black url('@/assets/cover01.jpg') center no-repeat;
background-size: cover;
line-height: 144vh;
text-align: center;
font-size: 1.5em;
color: black;
text-shadow: 0 0 5px white;
cursor: pointer;
}
</style>