WEBLEB
Home
AI Editor
Login
Pro
English
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Mouse Click Counter HTML Template
10
iroger7
Open In Editor
Video
Publish Your Code
0
Recommended
17 July 2025
Couture Atelier Dashboard HTML Template
15 August 2025
HTML Drawing Tablet Code with Javascript
17 July 2025
HTML SVG Navigation Bar Code
HTML
Copy
Global Mouse Click Counter
Mouse Click Counter
0
Click anywhere on the page to increase the count!
Reset
CSS
Copy
body { background: #f2f8fd; font-family: Arial, sans-serif; display: flex; height: 100vh; align-items: center; justify-content: center; margin: 0; } .counter-container { background: #fff; padding: 2em 3em; border-radius: 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.1); text-align: center; } #count { font-size: 3em; margin: 1em 0; color: #1e90ff; } #resetBtn { padding: 0.5em 1.2em; border: none; background: #1e90ff; color: #fff; border-radius: 8px; font-size: 1em; cursor: pointer; } #resetBtn:hover { background: #1666a2; }
JS
Copy
let count = 0; const countDisplay = document.getElementById('count'); const resetBtn = document.getElementById('resetBtn'); document.addEventListener('click', function(event) { // Prevent the counter from increasing when clicking the reset button if (event.target === resetBtn) return; count++; countDisplay.textContent = count; }); resetBtn.addEventListener('click', function(event) { count = 0; countDisplay.textContent = count; });