-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
77 lines (76 loc) · 2.67 KB
/
options.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta name="content-type" content="text/html; charset=UTF-8" http-equiv="content-type">
<link href="http://fonts.googleapis.com/css?family=Questrial" rel="stylesheet" type="text/css">
<link href="/cupcup/css/style.css" rel="stylesheet" type="text/css">
<link href="/cupcup/img/favicon.ico" rel="icon" type="image/x-icon">
<title>CupCupClub</title>
</head>
<body>
<form id="options">
<div>
<label for="shape">Possible Shapes</label>
<select id="shape">
<option value="random">Random</option>
</select>
</div>
<div>
<label for="background">Possible Backgrounds</label>
<select id="background">
<option value="random">Random</option>
</select>
</div>
<div>
<label for="customBackgroundPath">Custom Background URL</label>
<input type="text" id="customBackgroundPath">
</div>
<div>
<label for="customBackgroundWidth">Custom Background Width</label>
<input type="number" id="customBackgroundWidth" min="1" max="10000" step="1">
</div>
<div>
<label for="customBackgroundHeight">Custom Background Height</label>
<input type="number" id="customBackgroundHeight" min="1" max="10000" step="1">
</div>
<div>
<label for="customBackgroundNickname">Custom Background Nickname</label>
<input type="text" id="customBackgroundNickname">
</div>
<div>
<label for="pixelSize">Pixel Size</label>
<input type="number" id="pixelSize" min="20" max="400" step="1">
</div>
<div>
<label for="stepSize">Step Size</label>
<input type="number" id="stepSize" min="1" max="100" step="1">
</div>
<div>
<label for="redAdjust">Red Adjust</label>
<input type="number" id="redAdjust" min="0.1" max="1.9" step="0.1">
</div>
<div>
<label for="greenAdjust">Green Adjust</label>
<input type="number" id="greenAdjust" min="0.1" max="1.9" step="0.1">
</div>
<div>
<label for="blueAdjust">Blue Adjust</label>
<input type="number" id="blueAdjust" min="0.1" max="1.9" step="0.1">
</div>
<div id="error_msg" class="hide">
<p class="options_error_msg">
You must specifiy all three parameters if you want to use a custom image
</p>
</div>
<div>
<input type="button" id="submit" value="Go!">
</div>
<div>
<a href="/cupcup">All Random</a>
</div>
</form>
<script src="/cupcup/js/globals.js"></script>
<script src="/cupcup/js/options.js"></script>
</body>
</html>