forked from CommandLineHeroes/clh-bash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.21 KB
/
Copy pathindex.html
File metadata and controls
32 lines (32 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>The Command Line Heroes BASH!</title>
<link rel="stylesheet" href="assets/styles.css">
</head>
<body>
<canvas id="game-canvas"></canvas>
<img id="test-pattern" src="assets/textures/clh_test_pattern.jpg">
<div id="game">
<!-- v-on:keydown.enter="testInput" -->
<textarea
v-model="cmd"
v-on:keydown="handleKeypress"
v-on:keyup="handleKeyup"
v-on:paste="handlePaste"
ref="cmd"
spellcheck=false
type="text"
name="cmd"
id="cmd"></textarea>
</div>
<script src="node_modules/three/build/three.min.js"></script>
<script src="node_modules/three/examples/js/libs/stats.min.js"></script>
<script src="node_modules/vue/dist/vue.min.js"></script>
<script src="node_modules/lodash/lodash.min.js"></script>
<script src="node_modules/@tweenjs/tween.js/src/Tween.js"></script>
<script type="module" src="src/main.js"></script>
</body>
</html>