-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Shuffle Pick</title>
<link rel="stylesheet" href="styles/styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="scripts/input-parser.js"></script>
<script src="scripts/card-selector.js"></script>
<script src="scripts/card-shuffler.js"></script>
</head>
<body>
<h1>Shuffle Pick</h1>
<section class="card-shuffler">
</section>
<section class="panel controls">
<span>Speed: </span><input id="speed" type="range" min="1" max="50" value="40"><br>
<span>Step Width: </span><input id="step" type="range" min="1" max="50" value="20"><br>
<button id="spin">Shuffle!</button>
</section>
<section class="panel value-inputs">
<textarea id="values">
Google;URL: http://www.google.com, URL2: http://t0ast.com</textarea>
<button id="set-values">Set Values</button>
</section>
<!--<div id="divider-debug"></div>-->
</body>
</html>