39 lines
675 B
HTML
39 lines
675 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Task 3 Vanilla - Duplication Tests</title>
|
|
<style>
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
background: #101418;
|
|
}
|
|
|
|
canvas {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<script type="module">
|
|
const mode = new URLSearchParams(window.location.search).get('test')
|
|
|
|
if (mode === 'group') {
|
|
import('./group.js')
|
|
} else {
|
|
import('./main.js')
|
|
}
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|