WEBLEB
Accueil
Éditeur
Connexion
Pro
Français
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Code du jeu "Le Cercle"
6012
Sampath122
Ouvrir dans l'éditeur
Video
Publiez votre code
1
Recommandé
10 February 2025
Un code par bachir123
18 August 2023
Code de bouton brillant
26 January 2025
Un code de Redllowge
HTML
Copy
Click the Circle Game
Score:
0
CSS
Copy
body { display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .game-container { text-align: center; } .circle { width: 100px; height: 100px; background-color: red; border-radius: 50%; position: relative; cursor: pointer; animation: moveCircle 2s infinite; } @keyframes moveCircle { 0% { left: 0; } 50% { left: calc(100% - 100px); } 100% { left: 0; } }
JS
Copy
let score = 0; document.getElementById('circle').addEventListener('click', () => { score++; document.getElementById('score').innerText = score; });