mirror of
https://github.com/ianramzy/decentralized-video-chat.git
synced 2024-11-01 07:59:21 +08:00
68 lines
2.4 KiB
HTML
68 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<title>Neon Chat</title>
|
|
<link rel="shortcut icon" href="images/logo.svg">
|
|
<link rel="stylesheet" href="../css/chat.css">
|
|
<script src="https://kit.fontawesome.com/9d7bb7e31a.js" crossorigin="anonymous"></script>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
|
|
<meta property="og:title" content="Join your friends call - Neonchat">
|
|
<meta property="og:description" content="Click the link to join this chat room using Neonchat">
|
|
<meta property="og:image" content="https://neonchat.io/images/preview.png">
|
|
<meta property="og:url" content="https://neonchat.io/">
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-162048272-1"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
function gtag() {
|
|
dataLayer.push(arguments);
|
|
}
|
|
|
|
gtag('js', new Date());
|
|
gtag('config', 'UA-162048272-1');
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<div class="videos">
|
|
<video id="remote-video" height="500" autoplay ondblclick={openFullscreen()}></video>
|
|
<video id="local-video" height="150" autoplay muted></video>
|
|
</div>
|
|
|
|
|
|
<div class="multi-button">
|
|
<div class="buttonContainer">
|
|
<button class="hoverButton" onclick="{muteMicrophone()}">
|
|
<i id="mic-icon" class="fas fa-microphone fa-xs"></i>
|
|
</button>
|
|
<div class="HoverState" id="mic-text">Mute</div>
|
|
</div>
|
|
<div class="buttonContainer">
|
|
<button class="hoverButton" onclick="{openFullscreen()}">
|
|
<i class="fas fa-compress fa-xs"></i>
|
|
</button>
|
|
<div class="HoverState">Fullscreen</div>
|
|
</div>
|
|
<div class="buttonContainer">
|
|
<button class="hoverButton" onclick="{pauseVideo()}">
|
|
<i class="fas fa-video fa-xs" id="video-icon"></i>
|
|
</button>
|
|
<div class="HoverState" id="video-text">Pause Video</div>
|
|
</div>
|
|
<div class="buttonContainer">
|
|
<button class="hoverButton" onclick="{window.location.href = '/newroom'}">
|
|
<i class="fas fa-phone-slash fa-xs"></i>
|
|
</button>
|
|
<div class="HoverState">End Call</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script src="/socket.io/socket.io.js"></script>
|
|
<script src="../js/snackbar.js"></script>
|
|
<script src="../js/chat.js"></script>
|
|
</body>
|
|
</html> |