37 lines
1.3 KiB
HTML
37 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>观看桌面流</title>
|
|
<link rel="stylesheet" href="/styles.css" />
|
|
</head>
|
|
<body>
|
|
<main class="shell">
|
|
<section class="panel viewer">
|
|
<div class="title-row">
|
|
<div>
|
|
<p class="eyebrow">Viewer</p>
|
|
<h1>观看桌面流</h1>
|
|
</div>
|
|
<span id="state" class="badge idle">等待直播</span>
|
|
</div>
|
|
|
|
<div class="video-stage">
|
|
<video id="player" autoplay muted playsinline></video>
|
|
<button id="play" class="play-overlay" type="button" hidden>播放直播</button>
|
|
</div>
|
|
|
|
<div class="actions">
|
|
<button id="audio" type="button">开启声音</button>
|
|
<button id="go-live" type="button">回到直播</button>
|
|
<button id="reload" type="button">重新连接</button>
|
|
<span id="latency" class="metric">延迟 -- ms</span>
|
|
</div>
|
|
|
|
<p id="message" class="message">如果画面未出现,请确认主机已经点击分享并允许浏览器采集屏幕。</p>
|
|
</section>
|
|
</main>
|
|
<script src="/viewer.js?v=12" type="module"></script>
|
|
</body>
|
|
</html> |