-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1.86 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Fractals</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/moment@2/moment.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.min.js"></script>
<script type="module" src="index.js"></script>
<style>
body {
background-color: #192227
}
</style>
</head>
<body>
<!-- <canvas id="myCanvas" height="4320" width="4320" class="m-3"></canvas> -->
<div id="appLabels" class="d-flex flex-row text-white mb-3 ml-3 flex-wrap">
<span class="mr-5 my-auto">Duration: {{ totalDuration | toRuntime }}</span>
<span class="mr-5 my-auto">Average Draw Time: {{ avgPointDraw | toRuntime }}</span>
<span class="mr-5 my-auto">Average Draw Time (Straights): {{ avgPointDrawStraights | toRuntime }}</span>
<span class="mr-5 my-auto">Average Draw Time (Diagonals): {{ avgPointDrawDiagonals | toRuntime }}</span>
<span class="mr-5 my-auto">Total Points: {{ totalPoints }}</span>
<span class="mr-5 my-auto">Layers: {{ currentLayer }}</span>
<span class="mr-5 my-auto">Layer Duration: {{ layerDuration | toRuntime }}</span>
<span class="mr-5 my-auto">Last Layer Duration: {{ lastLayerDuration | toRuntime }}</span>
<button type="button" class="btn btn-primary mr-2" @click="moveToCenter">Move To Center</button>
<button type="button" class="btn btn-secondary mr-2" @click="download">Download Image</button>
<button type="button" class="btn btn-danger" @click="stop">Stop</button>
</div>
<canvas id="myCanvas" height="64" width="64" class="m-3"></canvas>
</body>
</html>