1
0

Emoji Jump: Favicon & Footer hinzugefügt

This commit is contained in:
Akamaru 2025-03-20 15:23:28 +01:00
parent 63d6c4a516
commit 04ea3e881a
2 changed files with 55 additions and 2 deletions

BIN
emoji_jump/icon.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

View File

@ -3,11 +3,14 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Emoji Doodle Jump</title>
<meta property="og:title" content="Emoji Doodle Jump">
<title>Emoji Doodle Jump | PonyWave Tools</title>
<link rel="icon" href="https://tools.ponywave.de/emoji_jump/icon.jpg">
<meta property="og:title" content="Emoji Doodle Jump | PonyWave Tools">
<meta property="og:description" content="Ein Doodle Jump Klon mit Emojis">
<meta property="og:type" content="website">
<meta property="og:url" content="https://tools.ponywave.de/emoji_jump">
<meta property="og:image" content="https://tools.ponywave.de/emoji_jump/icon.jpg">
<script defer src="https://stats.ponywave.de/script" data-website-id="9ef713d2-adb9-4906-9df5-708d8a8b9131" data-tag="emoji_jump"></script>
<script src="https://html2canvas.hertzen.com/dist/html2canvas.min.js"></script>
<style>
body {
@ -16,6 +19,10 @@
background: #f0f0f0;
font-family: Arial, sans-serif;
touch-action: none;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
#gameContainer {
@ -84,6 +91,42 @@
margin: 20px auto;
padding: 10px;
}
footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
padding: 1rem 0;
color: #333;
font-size: 0.9rem;
text-align: center;
border-top: 1px solid #ddd;
background-color: rgba(255, 255, 255, 0.9);
z-index: 100;
user-select: none;
}
footer a {
color: #4CAF50;
text-decoration: none;
transition: color 0.3s;
}
footer a:hover {
text-decoration: underline;
}
.heart {
color: #e74c3c;
animation: heartbeat 1.5s infinite;
}
@keyframes heartbeat {
0% { transform: scale(1); }
50% { transform: scale(1.2); }
100% { transform: scale(1); }
}
</style>
</head>
<body>
@ -118,6 +161,13 @@
Zerbrechliche Plattformen brechen!<br>
3 Leben ❤️ - Bei 0 ist Spiel vorbei</p>
</div>
<footer>
<p>
<a href="https://tools.ponywave.de/">Zurück zur Startseite</a> |
&copy; <span id="current-year"></span> Akamaru | Made with <span class="heart">❤️</span> by Claude
</p>
</footer>
<script>
let canvas = document.getElementById('canvas');
@ -318,6 +368,9 @@
touchStartX = touch.clientX;
e.preventDefault();
}, { passive: false });
// Jahr für das Copyright aktualisieren
document.getElementById('current-year').textContent = new Date().getFullYear();
init();
</script>