48 lines
No EOL
1.4 KiB
HTML
48 lines
No EOL
1.4 KiB
HTML
<!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> |