-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
136 lines (132 loc) · 3.68 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="assets/favicon.ico" rel="shortcut icon" />
<link href="https://fonts.gstatic.com" rel="preconnect" />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;800&display=swap"
rel="stylesheet"
/>
<link href="style.css" rel="stylesheet" />
<title>photo-filter</title>
</head>
<body>
<header class="header">
<h1 class="header-title">Photo-filter</h1>
</header>
<main class="main">
<div class="filters">
<form oninput="result.value=parseInt(blur.value)">
<label>
Blur:
<input
name="blur"
data-sizing="px"
type="range"
min="0"
max="10"
value="0"
/>
<output name="result" for="blur">0</output>
</label>
</form>
<form oninput="result.value=parseInt(invert.value)">
<label>
Invert:
<input
name="invert"
data-sizing="%"
type="range"
min="0"
max="100"
value="0"
/>
<output name="result">0</output>
</label>
</form>
<form oninput="result.value=parseInt(sepia.value)">
<label>
Sepia:
<input
name="sepia"
data-sizing="%"
type="range"
min="0"
max="100"
value="0"
/>
<output name="result">0</output>
</label>
</form>
<form oninput="result.value=parseInt(saturate.value)">
<label>
Saturate:
<input
name="saturate"
data-sizing="%"
type="range"
min="0"
max="200"
value="100"
/>
<output name="result">100</output>
</label>
</form>
<form oninput="result.value=parseInt(hue.value)">
<label>
Hue rotate:
<input
name="hue"
data-sizing="deg"
type="range"
min="0"
max="360"
value="0"
/>
<output name="result">0</output>
</label>
</form>
</div>
<div class="editor">
<div class="btn-container">
<button class="btn btn-reset">Reset</button>
<button class="btn btn-next btn-active">Next picture</button>
<label class="btn btn-load" for="btnInput">
Load picture
<input
class="btn-load--input"
id="btnInput"
name="upload"
type="file"
placeholder="Load picture"
/>
</label>
<button class="btn btn-save">Save picture</button>
</div>
<div class="image-container">
<img src="assets/img/01.jpg" alt="image" />
</div>
</div>
</main>
<footer class="footer">
<div class="footer-container">
<a class="github" href="#" target="_blank" rel="noopener noreferrer"
>github</a
>
<a
class="rss"
href="https://rs.school/js/"
target="_blank"
rel="noopener"
>
<span class="rss-year">'21</span>
</a>
</div>
</footer>
<button class="fullscreen openfullscreen"></button>
<script src="index.js"></script>
</body>
</html>