-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.html
More file actions
41 lines (37 loc) · 1.47 KB
/
app.html
File metadata and controls
41 lines (37 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LocalTube App</title>
<link rel="stylesheet" href="styles/base.css">
<link rel="stylesheet" href="styles/header.css">
<link rel="stylesheet" href="styles/player.css">
<link rel="stylesheet" href="styles/grid.css">
<link rel="stylesheet" href="styles/modal.css">
<link rel="stylesheet" href="styles/components.css">
<link rel="stylesheet" href="styles/responsive.css">
<link rel="stylesheet" href="https://cdn.plyr.io/3.6.8/plyr.css">
</head>
<body >
<!-- Header компонент -->
<div id="header-component"></div>
<div id="unified-player" class="unified-player minimized">
<div class="player-wrapper">
<video id="video-player" class="video-element"></video>
<div class="player-controls minimized-controls">
<button id="play-pause-btn" class="control-btn">⏯️</button>
<button id="expand-btn" class="control-btn">⤢</button>
<button id="close-btn" class="control-btn">✖️</button>
</div>
</div>
</div>
<!-- Контейнер для загрузки страниц -->
<main id="page-content">
</main>
<!-- Download Modal компонент -->
<div id="download-modal-component"></div>
<!-- Скрипты -->
<script src="app.js"></script>
</body>
</html>