Add trace_visualization/index.html
This commit is contained in:
commit
6be282452c
1 changed files with 48 additions and 0 deletions
48
trace_visualization/index.html
Normal file
48
trace_visualization/index.html
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Timekeeping Trace Visualization</title>
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<script src="js/app.js" defer></script>
|
||||
</head>
|
||||
<body>
|
||||
<header class="app-header" id="app-header">
|
||||
<h1>Analyse der Zeitmessdaten – Experiment: timekeeping_analysis</h1>
|
||||
</header>
|
||||
|
||||
<main class="app-main">
|
||||
<aside class="filter-panel" id="filter-panel">
|
||||
<h2>Filter</h2>
|
||||
<form id="filter-form">
|
||||
<label for="condition">Laufbedingung:</label>
|
||||
<select id="condition" name="condition">
|
||||
<option value="all">Alle</option>
|
||||
<option value="idle">Idle</option>
|
||||
<option value="load">Last</option>
|
||||
</select>
|
||||
</form>
|
||||
</aside>
|
||||
|
||||
<section class="chart-area" id="chart-area">
|
||||
<h2>Diagramme</h2>
|
||||
<div class="chart-container">
|
||||
<!-- Diagrammplatzhalter, wird von JS gerendert -->
|
||||
<canvas id="timekeeping-chart"></canvas>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="stats-summary" id="stats-summary">
|
||||
<h2>Statistische Zusammenfassung</h2>
|
||||
<div id="summary-content">
|
||||
<!-- Statistische Daten werden dynamisch angezeigt -->
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer class="app-footer" id="app-footer">
|
||||
<p>© 2025 Donau2Space.de</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in a new issue