-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 2.29 KB
/
index.html
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
42
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<title>Earth on live</title>
<style>
body {
padding: 15px;
}
</style>
</head>
<body class="text-white bg-dark">
<div class="container-fluid">
<ul class="nav nav-tabs">
<li class="nav-item"> <a class="nav-link active" data-toggle="tab" href="#cam1">Камера 1</a> </li>
<li class="nav-item"> <a class="nav-link" data-toggle="tab" href="#cam2">Камера 2</a> </li>
</ul>
<div class="tab-content p-2">
<div class="tab-pane fade show active" id="cam1">
<h2 class="h3 mb-2">Трансляция с первой камеры</h2>
<iframe width="288" height="162" src="https://ustream.tv/embed/17074538"
scrolling="no" allowfullscreen webkitallowfullscreen frameborder="0"
style="border: 0 none transparent;"></iframe>
</div>
<div class="tab-pane fade" id="cam2">
<h2 class="h3 mb-2">Трансляция со второй камеры</h2>
<iframe width="288" height="192" src="https://ustream.tv/embed/9408562"
scrolling="no" allowfullscreen webkitallowfullscreen frameborder="0"
style="border: 0 none transparent;"></iframe>
</div>
</div>
</div>
<div class="p-5"></div>
<p class="h5 mb-3">Почему я не вижу планету Земля? - Возможно, сейчас камера направлена
в другую сторону, камера находится на ночной части земли или произошла
потеря сигнала.</p>
<div class="fixed-bottom">
<div class="border-top"></div>
<div class="row">
<div class="w-50 mx-auto">
<footer>
<p>Copyright 2022 Космический Вестник</p>
</footer>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>