Backtotop.svelte
691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<script>
import { fly } from 'svelte/transition'
let show = false;
function scrollUp() {
document.body.scrollIntoView({behavior: "smooth"})
}
function hide() {
if (window.scrollY > 60) {
show = true
} else {
show = false
}
}
</script>
<style>
#backtotop {
border-radius: 100%;
width: 50px;
height: 50px;
position: fixed;
right: 4%;
bottom: 10%;
}
</style>
<svelte:window on:scroll={hide}></svelte:window>
{#if (show)}
<button id="backtotop"
transition:fly="{{ y : 200, duration:400}}"
on:click={scrollUp}>
▲
</button>
{/if}