54 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.7 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>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">
 | |
|     <!-- 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>
 | |
| 
 | |
|     <!-- 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 src="kontrola_api.js"></script>
 | |
| <script src="speech_recognition.js"></script>
 | |
| <script src="videoplayer.js"></script>
 | |
| 
 | |
| </body>
 | |
| </html>
 |