-
-
Notifications
You must be signed in to change notification settings - Fork 555
/
Copy pathindex.html
49 lines (48 loc) · 1.56 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
<!-- Based on Fluid Image Pop Up JavaScript Tutorial by Simo Edwin - Dev Ed (2020)
see: https://www.youtube.com/watch?v=4SQXOA8Z-lo -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Lightbox</title>
</head>
<body>
<div class="gallery">
<div class="img-container">
<img
src="https://images.unsplash.com/photo-1690790427878-ecf29d8b686b?q=80&w=640"
alt="No elegance is possible without perfume"
data-original="1887"
/>
</div>
<div class="img-container">
<img
src="https://images.unsplash.com/photo-1696218614256-b74c0bcde0d5?q=80&w=640"
alt="It is the unseen, unforgettable, ultimate accessory"
data-original="1887"
/>
</div>
<div class="img-container">
<img
src="https://images.unsplash.com/photo-1696218359361-b088f32f86b8?q=80&w=640"
alt="A perfume is like a piece of clothing, a message"
data-original="1887"
/>
</div>
<div class="img-container">
<img
src="https://images.unsplash.com/photo-1690790591188-3503c1a4dcb6?q=80&w=640"
alt="Perfume is like a parenthesis, a moment of freedom"
data-original="1887"
/>
</div>
</div>
<div class="modal">
<img src="" alt="" class="full-img" />
<p class="caption"></p>
</div>
<script src="script.js"></script>
</body>
</html>