-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (74 loc) · 3.63 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<!--file:///Users/avijitthawani/Downloads/Study/AnkiNum/index.html?orbitDebug-->
<html>
<head>
<script type="module" src="https://js.withorbit.com/orbit-web-component.js"></script>
<meta charset="utf-8">
<title>Numeric Facts</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<header>
<nav class="navbar navbar-expand-sm bg-danger navbar-dark">
<div class="container-fluid">
<a id="skip" class="navbar-brand" href="#">Ballpark</a>
<div class="navbar-nav">
<a class="nav-item nav-link px-3" href="https://github.com/avi-jit/ballpark" data-toggle="modal">About</a>
</div>
</div>
</nav>
</header>
<!-- <orbit-reviewarea color="purple">
<orbit-prompt
question="What's the working name for Andy's experimental mnemonic medium platform?"
answer="Orbit"
></orbit-prompt>
<orbit-prompt
question="What kind of quantum gate is this?"
question-attachments="https://docs.withorbit.com/toffoli.png"
answer="A Toffoli gate."
></orbit-prompt>
<orbit-prompt
question="Given a right triangle with legs of length $a$ and $b$, what is the length of hypotenuse $c$?"
answer="$$c = \sqrt{a^2 + b^2}$$"
></orbit-prompt>
</orbit-reviewarea> -->
<div id="root-div" class="d-flex flex-column justify-content-center flex-nowrap w-100 px-5 py-2">
<div hidden id="ques-div" class="d-flex justify-content-center">
<!-- <button type="button" id="next">Next</button> -->
<label hidden class="p-5" for="customRange3" class="form-label" id="prompt">Prompt Here</label>
<br/>
</div>
<div hidden id="slider-div" class="d-flex flex-row justify-content-center">
<span hidden style="white-space: nowrap">
<label hidden class="p-5" id="low"></label>
<input hidden type="range" class="form-range" min="0" max="14" step=".1" id="slider"/>
<label hidden class="p-5" id="high"></label>
</span>
</div>
<br/>
<div hidden id="value-div" class="d-flex justify-content-center">
<label hidden class="p-5" id="value"></label>
</div>
<br/>
<div hidden id="button-div" class="d-flex justify-content-center">
<button type="button" id="submit" class="inactive">Start</button>
<!--input id="value" /-->
<!--input id="slider" type="range" min="0" max="20" /-->
</div>
</div>
</body>
<script src="https://d3js.org/d3.v4.js"></script>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script type="text/javascript" src="main.js" defer></script>
<!-- <script type="module" src="srs.ts" defer></script> -->
<!-- <script> $.support.cors = true; </script> -->
</html>