-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmouse-heatmap.html
More file actions
45 lines (45 loc) · 2.62 KB
/
mouse-heatmap.html
File metadata and controls
45 lines (45 loc) · 2.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">
<link rel="stylesheet" href="style.css">
<meta name="description" content="Oscar Saul - Computer Science and Business student specializing in full-stack web development and cybersecurity.">
<meta name="og:email" content="oscarsaul.mmv@gmail.com"/>
<meta name="og:phone_number" content="437-219-3454"/>
<link rel="icon" href="logo.png">
<title>Oscar Saul</title>
</head>
<body>
<script src="https://unpkg.com/swup@4"></script>
<div id="swup">
<div id="wrapper">
<a id="back" href="/">← oscar saul </a>
<br><br>
<a class="gradient-null" id="source" href="https://github.com/oscarmmv/Analytics-Insights"><i style="vertical-align: 1px;" class="bi bi-github"></i> Source</a>
<h1>Mouse Heatmap</h1>
<div class="desc">The Mouse Heatmap is a lightweight analytics tool designed to track and visualize user interactions on your website through real-time mouse movement data. It captures key engagement metrics such as cursor paths, click locations, and user presence or absence from the page. </div>
<br>
<img src="assets/mouse-heatmap.png" alt="Mouse Heatmap Image">
<br>
<div class="desc"> The tool can be run <div class="gradient">server-side</div> and records mouse coordinates at a customizable tick rate, allowing developers to balance performance with tracking accuracy. Data is efficiently read from and written to <div class="gradient">CSV files</div>, making it easy to store, analyze, and integrate with other tools. The application also features <div class="gradient">live playback controls</div>, enabling you to visually replay a user's journey through your site as a dynamic heatmap, offering valuable insight into user behavior and interaction patterns.</div>
<footer>
<ul id="tags">
<li>#python</li>
<li>#javascript</li>
<li>#json</li>
<li>#user-metrics</li>
</footer>
</div>
</div>
<script src="https://unpkg.com/swup@2.1.0/dist/swup.min.js"></script>
<script>
if (window.matchMedia("(pointer: none), (pointer: coarse)").matches) {
var link = document.createElement('link');
link.rel = 'stylesheet';
link.href = 'mobile-style.css';
document.head.appendChild(link);
}
</script>
</body>
</html>