WEBLEB
होम
संपादक
लॉग इन करें
Pro
हिंदी
English
Français
Español
Português
Deutsch
Italiano
हिंदी
द सर्किल गेम कोड
6016
Sampath122
संपादक में खोलें
Video
अपना कोड प्रकाशित करें
1
अनुशंसित
12 February 2026
अनब्लॉक किए गए गेम: FNAF, Sandtris, Slope, 1v1.LOL
24 November 2025
यूनिटी गेम लोडर: पक्षियों का उदाहरण
5 June 2025
yuhhxn द्वारा एक कोड
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; });