-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (44 loc) · 1.31 KB
/
index.html
File metadata and controls
49 lines (44 loc) · 1.31 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Image Filter App</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<main>
<canvas id="canvas"></canvas>
<div id="drop-overlay" class="overlay show">
<p>📤 Drag & Drop or Click to Upload</p>
<input type="file" id="uploader" />
</div>
</main>
<aside>
<div class="booster">
<button>Grayscale</button>
<button>Sepia Effect</button>
<button>Invert</button>
<button>Smart Invert</button>
<button>RGB - RBG</button>
<button>RGB - BGR</button>
<button>RGB - GBR</button>
<button>RGB - GRB</button>
<button>Preserve Primary Colors</button>
<button>Color Boost</button>
<button>High Contrast</button>
<button>Blue Tone</button>
</div>
<div class="controls">
<button id="btn1">Clear</button>
<button id="btn2">Download</button>
</div>
<div class="reload dual-buttons">
<button id="btn3" onclick="clearPhoto()">Remove Photo</button>
<button id="themeToggle" onclick="toggleTheme()">🌙</button>
</div>
</aside>
<div id="theme-popup" class="popup center-popup"></div>
<script src="script.js"></script>
</body>
</html>