-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (35 loc) · 1.01 KB
/
index.html
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
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" media="screen" href="style.css" />
<title>Cosmin Panescu</title>
</head>
<body>
<div class="wrapper">
<div id="terminal">
<a id="before"></a>
</div>
<div id="command" onclick="document.getElementById('texter').focus();">
<textarea
name=""
id="texter"
type="text"
onkeyup="typeIt(this, event)"
onkeydown="typeIt(this, event);
moveIt(this.value.length, event)"
onkeypress="typeIt(this, event);"
autofocus=""
></textarea>
<div id="liner">
<span id="typer"></span>
<b class="cursor" id="cursor"></b>
</div>
</div>
</div>
<script src="scripts/caret.js"></script>
<script src="scripts/commands.js"></script>
<script src="scripts/main.js" type="module"></script>
</body>
</html>