-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
49 lines (47 loc) · 2.36 KB
/
gallery.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>CSS Only Thumbnail Gallery Demo</title>
<link href="https://fonts.googleapis.com/css?family=Pontano+Sans" rel="stylesheet">
<link rel="stylesheet" href="../css/main.min.css">
</head>
<body class="gallery-demo">
<input class="sr-only focusable" type="checkbox" id="gray">
<label class="grayscale__label" for="gray">Make Images Grayscale</label>
<div class="gallery">
<div class="gallery__thumbs">
<label for="gallery1-img1" class="gallery__thumb">
<img src="http://unsplash.it/200/200/?image=1074" alt="A big cat">
</label>
<label for="gallery1-img2" class="gallery__thumb">
<img src="http://unsplash.it/200/200/?image=1020" alt="A bear">
</label>
<label for="gallery1-img3" class="gallery__thumb">
<img src="http://unsplash.it/200/200/?image=1084" alt="I am the walrus">
</label>
<label for="gallery1-img4" class="gallery__thumb">
<img src="http://unsplash.it/200/200/?image=1003" alt="Bambi">
</label>
<label for="gallery1-img5" class="gallery__thumb">
<img src="http://unsplash.it/200/200/?image=718" alt="A wolf">
</label>
</div>
<div class="gallery__images">
<input type="radio" id="gallery1-img1" name="gallery1-image" class="gallery__input sr-only focusable" checked>
<img src="http://unsplash.it/700/500/?image=1074" alt="A big cat">
<input type="radio" id="gallery1-img2" name="gallery1-image" class="gallery__input sr-only focusable">
<img src="http://unsplash.it/700/600/?image=1020" alt="A bear">
<input type="radio" id="gallery1-img3" name="gallery1-image" class="gallery__input sr-only focusable">
<img src="http://unsplash.it/700/600/?image=1084" alt="I am the walrus">
<input type="radio" id="gallery1-img4" name="gallery1-image" class="gallery__input sr-only focusable">
<img src="http://unsplash.it/700/500/?image=1003" alt="Bambi">
<input type="radio" id="gallery1-img5" name="gallery1-image" class="gallery__input sr-only focusable">
<img src="http://unsplash.it/700/500/?image=718" alt="A wolf">
</div>
</div>
<!-- demo on codepen https://codepen.io/anon/pen/NjbKmX?editors=1100 -->
</body>
</html>