Add drift_matrix_visualization/index.html
This commit is contained in:
commit
7168178952
1 changed files with 39 additions and 0 deletions
39
drift_matrix_visualization/index.html
Normal file
39
drift_matrix_visualization/index.html
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Drift-Matrix Visualisierung</title>
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<script type="module" src="js/app.js" defer></script>
|
||||
</head>
|
||||
<body>
|
||||
<header class="app-header flex-row" role="banner">
|
||||
<h1 class="app-title">Drift-Matrix Analyse</h1>
|
||||
<div class="run-control" role="form" aria-label="Auswahl Lauf-ID">
|
||||
<label for="run-selector">Run-ID:</label>
|
||||
<select id="run-selector" class="run-selector control" aria-label="Run Auswahl">
|
||||
<option value="" disabled selected>Run wählen...</option>
|
||||
</select>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<section class="matrix-container grid-layout" aria-label="Drift Matrix Visualisierung">
|
||||
<!-- Dynamische Matrix-Quadranten werden hier eingefügt -->
|
||||
</section>
|
||||
|
||||
<aside class="matrix-detail-panel side-panel" aria-label="Detailinformationen" aria-live="polite">
|
||||
<h2>Details</h2>
|
||||
<div class="detail-content">
|
||||
<p>Wähle einen Quadranten, um Details zu sehen.</p>
|
||||
</div>
|
||||
</aside>
|
||||
</main>
|
||||
|
||||
<footer class="app-footer" role="contentinfo">
|
||||
<p>© 2026 Donau2Space.de</p>
|
||||
<p>Letztes Update: <span id="last-update">–</span></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in a new issue