mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-05 22:10:31 +02:00
29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Click Test</title>
|
|
<meta name="description" content="Clicking Test Without Any Trackers, Fully Open-Source on GitHub!">
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="shortcut icon" href="https://rimgo.pussthecat.org/RFbdMMB.png" type="image/x-icon">
|
|
</head>
|
|
<body>
|
|
<div class="cards" id="container">
|
|
<h1>Click Test</h1>
|
|
<p>A minimalist clicking test without ads or trackers.</p>
|
|
<p>(To show the context menu, hold SHIFT and Right Click)</p>
|
|
|
|
<div class="counter">
|
|
<div>Left Clicks: <span id="leftClickCount">0</span></div>
|
|
<div>Right Clicks: <span id="rightClickCount">0</span></div>
|
|
<div>Middle Clicks: <span id="middleClickCount">0</span></div>
|
|
<button class="reset" id="lmbReset">Reset LMB</button>
|
|
<button class="reset" id="rmbReset">Reset RMB</button>
|
|
<button class="reset" id="mmbReset">Reset MMB</button>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|