-
Notifications
You must be signed in to change notification settings - Fork 30
Open
Description
<title>Kassi mäng</title>
<style>
body { text-align: center; font-family: Arial; background:#f7e7ff; }
h1 { color:#6b00b3; }
#cat {
width: 200px;
cursor: pointer;
transition: transform 0.1s;
}
#cat:active {
transform: scale(1.1);
}
#score {
font-size: 24px;
margin-top: 15px;
color:#b30077;
}
</style>
Pane kass nurruma 😺
Nurrupunkte: 0
<script>
let score = 0;
document.getElementById("cat").addEventListener("click", function() {
score++;
document.getElementById("score").innerText = "Nurrupunkte: " + score;
});
</script>
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
