-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (39 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Viewer</title>
<link rel="stylesheet" href="https://linfindel.github.io/nadircss/nadir.css">
</head>
<body style="background-size: cover; background-repeat: no-repeat;">
<div class="navbar-column">
<nav id="navbar">
<h1 id="navbar-text">Image Viewer</h1>
</nav>
<div id="buttons" class="row">
<button onclick="location.href = 'about.html'" id="button4">
<span translate="no" class="material-symbols-rounded">info</span>
About
</button>
<button id="button1" onclick="imageOptions('show')">
<span translate="no" id="button1-icon" class="material-symbols-rounded">upload</span>
<span id="button1-text">Upload image</span>
</button>
<button id="button2" onclick="resetImage()">
<span translate="no" id="button2-icon" class="material-symbols-rounded">reset_image</span>
<span id="button2-text">Reset image</span>
</button>
<a id="filters">
<button id="button3" style="display: none;">
<span translate="no" class="material-symbols-rounded">tune</span>
Filters
</button>
</a>
</div>
</div>
<img id="image" style="max-width: 80vw; max-height: 80vh;">
<script src="https://cdnjs.cloudflare.com/ajax/libs/vibrant.js/1.0.0/Vibrant.min.js"></script>
<script src="script.js"></script>
</body>
</html>