-
Notifications
You must be signed in to change notification settings - Fork 0
/
bidirectional.html
52 lines (42 loc) · 1.49 KB
/
bidirectional.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
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>8 bit</title>
<link rel="stylesheet" href="css/eightbit.css">
</head>
<body>
<div class="title">
<h1>My Constellation</h1>
<button id="fb_login" class="facebookLogin"><img src="./images/facebook_icon.png"></button>
<button id="random" class="facebookLogin"><img src="./images/random_icon.png"></button>
<button id="fb_refresh">fb Refresh</button>
<button id="fb_logout">fb Logout</button><br>
<!-- <button id="insta_login">Insta Login</button>
<button id="insta_refresh">Insta Refresh</button><br> -->
<button id="start">start</button>
<button id="stop">stop</button>
<button id="startSelect">select start</button>
<button id="endSelect">select end</button><br>
<div class="settings">
<label for="frameRate">
FrameRate
<input type="number" id="frameRate" value="0.1" />
</label>
<label for="diagonalBool">
diagonal
<input type="text" id="diagonalBool" value="true" />
</label>
<label for="diagonalWeight">
diagonalWeight
<input type="number" id="diagonalWeight" value="1.4" />
</label>
<button id="update">Update</button>
</div>
</div>
<canvas></canvas>
</body>
<script src="js/facebook_login.js"></script>
<script src="js/eightbit.js"></script>
<script src="js/search_bidirectional.js"></script>
</html>