-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (88 loc) · 2.6 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
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>NY2022</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="settings">
<div>
<label>
<span>Текст</span>
<input id="textInput" type="text">
</label>
</div>
<div>
<label>
<span>Задержка ввода</span>
<input id="textIntervalInput" type="number">
</label>
</div>
<div>
<label>
<span>Сила ветра</span>
<input id="windPowerInput" type="number">
</label>
</div>
<div>
<label>
<span>Скорость ветра</span>
<input id="windSpeedInput" type="number">
</label>
</div>
<div>
<label>
<span>Скорость снега</span>
<input id="snowSpeedInput" type="number">
</label>
</div>
<div>
<label>
<span>Количество снежинок</span>
<input id="snowflakeCountInput" type="number">
</label>
</div>
<div>
<label>
<span>Цвет фона</span>
<input id="backgroundColorInput" type="color">
</label>
</div>
<div>
<label>
<span>Цвет ёлки</span>
<input id="treeColorInput" type="color">
</label>
</div>
<div>
<label>
<span>Цвет снежинок</span>
<input id="snowColorInput" type="color">
</label>
</div>
<div>
<label>
<span>Цвет тени ёлки</span>
<input id="treeShadowColorInput" type="color">
</label>
</div>
<div>
<label>
<span>Цвет тени снега</span>
<input id="snowShadowColorInput" type="color">
</label>
</div>
<div>
<label>
<span>Тени</span>
<input id="shadowsInput" type="checkbox">
</label>
</div>
</div>
<script src="script.js"></script>
</body>
</html>