124 lines
2.7 KiB
HTML
124 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Test-Übersicht</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #f5f5f5;
|
|
color: #333;
|
|
}
|
|
|
|
header {
|
|
background-color: #2c3e50;
|
|
color: white;
|
|
padding: 1.5rem;
|
|
text-align: center;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
h1 {
|
|
margin: 0;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 2rem auto;
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
.test-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
|
|
gap: 1.5rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.test-card {
|
|
background-color: white;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
|
|
transition: transform 0.3s, box-shadow 0.3s;
|
|
}
|
|
|
|
.test-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.test-card-header {
|
|
background-color: #3498db;
|
|
color: white;
|
|
padding: 1rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.test-card-body {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.test-card-body p {
|
|
margin: 0 0 1rem;
|
|
color: #666;
|
|
}
|
|
|
|
.test-link {
|
|
display: inline-block;
|
|
text-decoration: none;
|
|
color: #3498db;
|
|
font-weight: bold;
|
|
padding: 0.5rem 0;
|
|
border-bottom: 2px solid transparent;
|
|
transition: border-color 0.3s;
|
|
}
|
|
|
|
.test-link:hover {
|
|
border-color: #3498db;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Test-Übersicht</h1>
|
|
</header>
|
|
|
|
<div class="container">
|
|
<p>Testseite. Hier werden verfügbaren Tests angezeigt.</p>
|
|
|
|
|
|
<div class="test-grid">
|
|
|
|
<div class="test-card">
|
|
<div class="test-card-header">Animation!</div>
|
|
<div class="test-card-body">
|
|
<p>Ein Test für Animationen mit Controller und Anime.js Bibliothek.</p>
|
|
<a href="anime-points-animation.html" class="test-link">Animierte Welle anzeigen</a>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="test-card">
|
|
<div class="test-card-header">Animation</div>
|
|
<div class="test-card-body">
|
|
<p>Ein Test einer Background Welle mit Anime.js Bibliothek.</p>
|
|
<a href="anime-wave.html" class="test-link">Welle anzeigen</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Platzhalter für weitere Testdateien -->
|
|
<div class="test-card">
|
|
<div class="test-card-header">Anime.js Punkte</div>
|
|
<div class="test-card-body">
|
|
<p>Ein Test für bewegliche Punkte mit Anime.js Bibliothek.</p>
|
|
<a href="anime-points-drag.html" class="test-link">bewegliche Punkte anzeigen</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|