- Enhanced hero section with floating blobs and animated title (word-by-word stagger) - Added feature cards with color accents (teal/magenta/gold), hover effects, and staggered animation - Implemented kinetic CTA section with floating background elements and animated buttons - Added comprehensive dark mode styles for all kinetic elements - Implemented responsive design for tablet (768px) and mobile (480px) breakpoints - All animations use cubic-bezier easing for snappy, kinetic feel (0.34, 1.56, 0.64, 1) - Optimized blob opacity and sizes for different screen sizes
110 lines
No EOL
3.8 KiB
HTML
110 lines
No EOL
3.8 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Startseite - EIS Projekt</title>
|
||
<link rel="icon" href="img/favicon.png" type="image/png">
|
||
<link rel="stylesheet" href="css/style.css">
|
||
</head>
|
||
|
||
<body>
|
||
|
||
<main>
|
||
|
||
<section class="hero kinetic-hero">
|
||
<div class="hero-background">
|
||
<div class="kinetic-blob blob-1"></div>
|
||
<div class="kinetic-blob blob-2"></div>
|
||
<div class="kinetic-blob blob-3"></div>
|
||
</div>
|
||
<div class="hero-content">
|
||
<h1 class="hero-title">
|
||
<span class="word" style="--index: 0">Willkommen</span>
|
||
<span class="word" style="--index: 1">auf</span>
|
||
<span class="word" style="--index: 2">unserer</span>
|
||
<span class="word" style="--index: 3">Website!</span>
|
||
</h1>
|
||
<p class="hero-subtitle">Ein interaktives Lernprojekt im Bereich der Web-Entwicklung</p>
|
||
<div class="scroll-indicator">
|
||
<span>Scroll zum Erkunden</span>
|
||
<svg class="scroll-arrow" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
||
<polyline points="6 9 12 15 18 9"></polyline>
|
||
</svg>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="content-section feature-section">
|
||
<h2 class="section-title">Über dieses Projekt</h2>
|
||
<p class="section-subtitle">Diese Website ist ein Lernprojekt im Rahmen der Lehrveranstaltung „Entwicklung interaktiver Softwareanwendungen" an der PH Weingarten. Hier präsentieren wir alles Wichtige über unser Projekt und unser Team.</p>
|
||
|
||
<div class="feature-grid kinetic-grid">
|
||
<div class="feature-card kinetic-card" style="--index: 0">
|
||
<div class="card-icon">🎓</div>
|
||
<h3>Bildung</h3>
|
||
<p>Erstellung von modernen, interaktiven Web-Anwendungen</p>
|
||
<div class="card-accent accent-teal"></div>
|
||
</div>
|
||
<div class="feature-card kinetic-card" style="--index: 1">
|
||
<div class="card-icon">💻</div>
|
||
<h3>Technologie</h3>
|
||
<p>HTML5, CSS3, und JavaScript für ein beeindruckendes Nutzererlebnis</p>
|
||
<div class="card-accent accent-magenta"></div>
|
||
</div>
|
||
<div class="feature-card kinetic-card" style="--index: 2">
|
||
<div class="card-icon">🤝</div>
|
||
<h3>Zusammenarbeit</h3>
|
||
<p>Teamarbeit und kreative Problemlösungen</p>
|
||
<div class="card-accent accent-gold"></div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="cta-section kinetic-cta">
|
||
<div class="cta-background">
|
||
<div class="cta-accent accent-1"></div>
|
||
<div class="cta-accent accent-2"></div>
|
||
<div class="cta-accent accent-3"></div>
|
||
</div>
|
||
<h2 class="cta-title">Erkunde unser Projekt</h2>
|
||
<div class="button-group kinetic-buttons">
|
||
<a href="eis_projekt.html" class="btn btn-primary kinetic-btn">
|
||
<span class="btn-text">Zum Projekt</span>
|
||
<span class="btn-arrow">→</span>
|
||
</a>
|
||
<a href="kontakt.html" class="btn btn-secondary kinetic-btn">
|
||
<span class="btn-text">Kontaktiere uns</span>
|
||
<span class="btn-arrow">→</span>
|
||
</a>
|
||
</div>
|
||
</section>
|
||
|
||
</main>
|
||
|
||
<footer>
|
||
<div class="footer-content">
|
||
<div class="footer-section">
|
||
<h3>Kontakt</h3>
|
||
<p>E-Mail: <a href="mailto:info@beispiel.de">info@beispiel.de</a></p>
|
||
</div>
|
||
<div class="footer-section">
|
||
<h3>Links</h3>
|
||
<ul>
|
||
<li><a href="impressum.html">Impressum</a></li>
|
||
<li><a href="ueber_uns.html">Über uns</a></li>
|
||
<li><a href="team.html">Team</a></li>
|
||
</ul>
|
||
</div>
|
||
<div class="footer-section">
|
||
<p>© 2025 – EIS Lernprojekt an der PH Weingarten</p>
|
||
</div>
|
||
</div>
|
||
</footer>
|
||
|
||
<script src="js/navbar.js"></script>
|
||
<script src="js/script.js"></script>
|
||
|
||
</body>
|
||
</html> |