Update Script_Speech_recognition/stranka.html

This commit is contained in:
Mário Panenko 2024-11-18 18:39:55 +00:00
parent e7a5bb2228
commit cef609b074

View File

@ -10,58 +10,44 @@
</head>
<body>
<!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>Jednoduchý Prekladač</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="progress_bar.css">
</head>
<body>
<!-- Theme toggle icon button -->
<button id="themeToggleBtn" title="Switch Theme">🌞</button>
<h1>Prekladač slovenčiny do slovenského posunkového jazyka</h1>
<div class="container">
<div class="inner-container">
<!-- Textové pole na zadanie textu -->
<div class="textarea-container">
<!-- Tlačidlá pre preklad -->
<div class="translation-buttons">
<button id="translateWordsBtn" class="active">Preložiť po slovách</button>
<button id="translateLettersBtn">Preložiť po písmenách</button>
</div>
<!-- Textové pole na zadanie textu -->
<div class="textarea-container">
<!-- Tlačidlá pre preklad -->
<div class="translation-buttons">
<button id="translateWordsBtn" class="active">Preložiť po slovách</button>
<button id="translateLettersBtn">Preložiť po písmenách</button>
</div>
<textarea id="inputText" placeholder="Enter text"></textarea>
<button id="startBtn">🎤</button>
<button id="translateBtn">Prelož</button>
<div id="timerDisplay"></div>
</div>
<textarea id="inputText" placeholder="Enter text"></textarea>
<button id="startBtn">🎤</button>
<button id="translateBtn">Prelož</button>
<div id="timerDisplay"></div>
</div>
<!-- Video na preklad -->
<div class="video">
<h2 id="currentLetter" style="text-align: center;"></h2>
<video id="translationVideo" controls style="border-radius: 4px;">
<source src="" type="video/mp4">
Your browser does not support the video tag.
</video>
<button id="prevBtn"></button>
<button id="nextBtn"></button>
</div>
<!-- Video na preklad -->
<div class="video">
<h2 id="currentLetter" style="text-align: center;"></h2>
<video id="translationVideo" controls style="border-radius: 4px;">
<source src="" type="video/mp4">
Your browser does not support the video tag.
</video>
<button id="prevBtn"></button>
<button id="nextBtn"></button>
</div>
</div>
<p id="statusText"></p>
<!-- Pripojenie skriptov -->
<script type="module" src="videoplayer.js"></script>
<script src="kontrola_api.js"></script>
<script src="speech_recognition.js"></script>
<script src="videoplayer.js"></script>
</body>
</html>