-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (61 loc) · 2.54 KB
/
Copy pathindex.html
File metadata and controls
65 lines (61 loc) · 2.54 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Editor de Imagem</title>
<!-- Google Fonts -->
<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=Pacifico&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;600&display=swap" rel="stylesheet">
<!-- Stylesheet -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 id="logo">PetScanner</h1>
<img src="fodase.jpg" style="width: 1800px; height: 750px;">
<div class="wrapper">
<div class="editor">
<div class="filter">
<label for="blur">Borrão</label>
<input type="range" min="0" max="5" value="0" step="0.1" id="blur">
</div>
<div class="filter">
<label for="contrast">Contraste</label>
<input type="range" min="0" max="200" value="100" id="contrast">
</div>
<div class="filter">
<label for="hue-rotate">Tonalidade</label>
<input type="range" min="0" max="360" value="0" id="hue-rotate">
</div>
<div class="filter">
<label for="sepia">Sépia</label>
<input type="range" min="0" max="100" value="0" id="sepia">
</div>
<div class="flip-buttons">
<div class="flip-option">
<input type="radio" name="flip" id="no-flip" checked>
<label for="no-flip">Não virar</label>
</div>
<div class="flip-option">
<input type="radio" name="flip" id="flip-x">
<label for="flip-x">Virar na Horizontal</label>
</div>
<div class="flip-option">
<input type="radio" name="flip" id="flip-y">
<label for="flip-y">Virar na Vertical</label>
</div>
</div>
</div>
<div class="result">
<figure class="image-container">
<img id="chosen-image">
</figure>
<input type="file" id="upload-button" accept="Image/*">
<label for="upload-button">Escolha uma imagem</label>
</div>
</div>
<!-- Script -->
<script src="script.js"></script>
</body>
</html>