-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
69 lines (62 loc) · 2.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" integrity="sha256-h20CPZ0QyXlBuAw7A+KluUYx/3pK+c7lYEpqLTlxjYQ=" crossorigin="anonymous" /> <link rel="stylesheet" href="./basic.css">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div id="revert-btn-container">
<button id="revert-btn">Revert to original sized images</button>
</div>
<div id="info-btn-container">
<i class="fas fa-info"></i>
</div>
<div id="info-box">
<p>From the classes chosen from the drop down in each image, the size of the image can be changes. Each class represents a different size. The dropdown cn be accessed by clicking the edit icon on hovering over each image. Each image can be deleted by clicking the bin icon.</p>
</div>
<div class="container"></div>
<div class="gallery-list-holder" id="list-holder">
<a href="" id="#original">ORIGINAL</a>
<a href="" id="#big">BIG</a>
<a href="" id="#horizontal">HORIZONTAL</a>
<a href="" id="#vertical">VERTICAL</a>
<a href="" id="#large">LARGE</a>
<a href="" id="#horizontal-large">HORIZONTAL-LARGE</a>
<a href="" id="#vertical-large">VERTICAL-LARGE</a>
<a href="" id="#space">SPACE</a>
<a href="" id="#space-horizontal">SPACE-HORIZONTAL</a>
<a href="" id="#space-vertical">SPACE-VERTICAL</a>
<a href="" id="#xl">XL</a>
<a href="" id="#horizontal-xl">HORIZONTAL-XL</a>
<a href="" id="#vertical-xl">VERTICAL-XL</a>
<a href="" id="#xxl">XXL</a>
<a href="" id="#xxxl">XXXL</a>
<!-- <a href="" id="#large">LARGE</a> -->
</div>
<div class ='modal close-modal'>
<span class="modal-cross-icon">×</span>
<div class='modal-controls'>
<span class="modal-prev-icon"><</span>
<span class="modal-next-icon">></span>
</div>
</div>
<form id="gallery-input-form" action="">
<fieldset>
<legend>IMAGE INPUT</legend>
<label for="src-input">Source input:</label>
<input type="text" placeholder="Enter image url" id="src-input" name="img-src" autocomplete="off">
<br>
<label for="detail-input">Details input:</label>
<input type="text" placeholder="Enter image details" id="detail-input" name="img-detail" autocomplete="off">
<br>
<button type="button" class="add-btn">add</button>
</fieldset>
</form>
<script src="./index.js"></script>
<script src="./gallery.js"></script>
</body>
</html>