Files
pages/src/lib/footer.svelte

55 lines
1.1 KiB
Svelte
Raw Normal View History

2025-04-04 19:00:47 +02:00
<script lang="ts">
var ratCounter = 0;
let playSound = function() {
new Audio(`common/rat/bolt${ratCounter}.wav`).play();
ratCounter += 1;
if (ratCounter == 3) {
ratCounter = 0;
}
}
</script>
<footer>
<div class="text-container">
<p> 20232025 <i>denizk0461</i></p>
</div>
2025-08-18 19:44:53 +02:00
<input
type="image"
on:click={playSound}
title="the bottom rat"
alt="the bottom rat"
class="bottom-rat"
src="/common/rat/spookyrat.webp">
2025-04-04 19:00:47 +02:00
</footer>
<style>
footer {
background-color: var(--color-background-highlight);
position: absolute;
left: 0;
bottom: 0;
height: 120px;
width: 100%;
backdrop-filter: blur(6px);
}
footer p {
font-family: var(--font-mono);
font-weight: 500;
2025-04-04 19:00:47 +02:00
}
.bottom-rat {
position: absolute;
width: 20%;
max-width: 100px;
right: 0;
bottom: 0;
}
.text-container {
height: 100%;
margin: auto 24px auto 48px;
display: flex;
align-items: center;
}
</style>