This commit is contained in:
parent
6f59cf76f7
commit
f925af6352
2 changed files with 10 additions and 8 deletions
|
@ -1,8 +1,10 @@
|
||||||
<script>
|
<script>
|
||||||
import BottomAppBar from './components/BottomAppBar.svelte';
|
import BottomAppBar from './components/BottomAppBar.svelte';
|
||||||
import Path from './components/Path.svelte';
|
import Path from './components/Path.svelte';
|
||||||
|
import Splash from './components/Splash.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<Splash></Splash>
|
||||||
<header>
|
<header>
|
||||||
<div id="welcome-message">Benvenuti a <span class="bold">Pianello Val Tidone</span></div>
|
<div id="welcome-message">Benvenuti a <span class="bold">Pianello Val Tidone</span></div>
|
||||||
</header>
|
</header>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
import { fade } from 'svelte/transition';
|
import { fade } from 'svelte/transition';
|
||||||
|
|
||||||
let visible = false;
|
let visible = true;
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
visible = true;
|
visible = false;
|
||||||
}, 500);
|
}, 1000);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -17,8 +17,8 @@
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
img {
|
img {
|
||||||
height: auto;
|
position: absolute;
|
||||||
|
height: 100vh;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
width: 100%;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue