61 lines
2.2 KiB
HTML
61 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="sk">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>Prekladač do SPJ</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Prekladač slovenčiny do slovenského posunkového jazyka</h1>
|
|
</header>
|
|
|
|
<main class="main-container">
|
|
<div class="text-section">
|
|
<!-- Tab navigation -->
|
|
<div class="tabs">
|
|
<button class="tab active" id="letterTab">Po písmenách</button>
|
|
<button class="tab" id="wordTab">Po slovách</button>
|
|
</div>
|
|
|
|
<!-- Text input area -->
|
|
<div class="textarea-container">
|
|
<textarea id="inputText" placeholder="Zadajte text na preklad..."></textarea>
|
|
<button id="startBtn" class="mic-btn" title="Spustiť rozpoznávanie reči">🎤</button>
|
|
</div>
|
|
|
|
<!-- Translate button -->
|
|
<button id="translateBtn" class="translate-btn">Prelož</button>
|
|
|
|
<!-- Notification message -->
|
|
<div id="notification" class="notification" style="display: none;">
|
|
<span>⚠️ Zvýraznené slová sa nenachádzajú v databáze prekladov.</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Video display section -->
|
|
<div class="video-section">
|
|
<!-- Current letter or word display -->
|
|
<h2 id="currentDisplay" class="current-display"></h2>
|
|
<video id="translationVideo" controls>
|
|
<source src="video/sample.mp4" type="video/mp4">
|
|
Your browser does not support the video tag.
|
|
</video>
|
|
<!-- Navigation buttons -->
|
|
<div class="video-controls">
|
|
<button id="prevBtn" class="nav-btn">←</button>
|
|
<button id="nextBtn" class="nav-btn">→</button>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<footer>
|
|
<p class="footer-note">* Beta version PMT 2024 *</p>
|
|
</footer>
|
|
|
|
<script src="videoplayer.js"></script>
|
|
</body>
|
|
</html>
|