-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (26 loc) · 832 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>matrixtyping</title>
<link rel="stylesheet" type="text/css" href="resources/assets/css/style.css">
</head>
<body>
<div class="container">
<div id="restart"> Restart </div>
<div id="matrixtyping">
</div>
</div>
<script type="text/javascript" src="resources/assets/js/bower_components/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="resources/assets/js/app.js"></script>
<script type="text/javascript">
setTimeout(function() {
var restart = document.getElementById("restart");
restart.addEventListener("click", function(i) {
matrixtyping.start();
});
matrixtyping.start();
}, 200);
</script>
</body>
</html>