26 lines
695 B
HTML
26 lines
695 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<title>Web Worker VirtualServer Example</title>
|
|
<script type="module" src="index.js"></script>
|
|
<link rel="stylesheet" href="index.css" />
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100vh;
|
|
}
|
|
perspective-viewer {
|
|
flex: 1;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<perspective-viewer></perspective-viewer>
|
|
</body>
|
|
</html>
|