-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisualization.html
More file actions
34 lines (29 loc) · 1.33 KB
/
Copy pathvisualization.html
File metadata and controls
34 lines (29 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<title>IMU Sensor Visualization</title>
<script src="https://cdn.plot.ly/plotly-2.27.0.min.js"></script>
<link rel="stylesheet" href="visualization.css">
</head>
<body>
<div class="container">
<h1>🎯 IMU Sensor Visualization</h1>
<p class="subtitle">Select sensor type and pose for each plot independently • Add/remove plots dynamically • Refresh to reset</p>
<div id="controls" class="controls"></div>
<div class="animation-controls">
<button class="btn btn-play" onclick="playAnimation()">▶ Play</button>
<button class="btn btn-pause" onclick="pauseAnimation()">⏸ Pause</button>
<button class="btn btn-reset" onclick="resetAnimation()">↺ Reset</button>
<button class="btn btn-add" onclick="addPlot()">➕ Add Plot</button>
</div>
<div class="slider-container">
<input type="range" id="timeSlider" min="0" max="250" value="0" step="1">
<div class="time-display">Time: <span id="timeDisplay">0.00</span> s</div>
</div>
<div id="plotGrid" class="plot-grid"></div>
</div>
<script src="generated/config.js"></script>
<script src="generated/data.js"></script>
<script src="visualization.js"></script>
</body>
</html>