-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathViewer.html
More file actions
59 lines (57 loc) · 2.64 KB
/
Viewer.html
File metadata and controls
59 lines (57 loc) · 2.64 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!doctype html>
<html lang="en">
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-MG2W66NX');</script>
<!-- End Google Tag Manager -->
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Destop Screen Mirror! Mirror Your linux Windows or macOS to your iOS or android device">
<link rel="shortcut icon" href="./assets/favicons/favicon.jpg" type="image/x-icon">
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./node_modules/animate.css/animate.css">
<link rel="stylesheet" href="./assets/icons/fontawesome/css/all.css">
<title>Document</title>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MG2W66NX"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<nav class="container">
<ul>
<li>
<a href="./index.html">
<img src="./assets/favicons/favicon.jpg" alt="Logo" width="60" class="animate__animated animate__tada">
</a>
</li>
<li class="DarkLightModeChange">
<header>
<h1>Destop Screen Mirror! Viewer page</h1>
<button id="button" aria-label="Toggle dark mode">
<i class="fa-solid fa-moon-stars"></i>
</button>
</header>
</li>
<li class="Links">
<br>
<a href="./Viewer.html" id="NormalLnk" class="animate__animated animate__tada">Click to Go to the viewer Page</a>
</li>
</ul>
</nav>
<main class="container">
<div class="status" id="status">Waiting for broadcaster...</div>
<video id="remoteVideo" autoplay playsinline controls></video>
</main>
<script src="./node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="./assets/js/script.js"></script>
<script src="./assets/js/viewer.js"></script>
</body>
</html>