-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (33 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Galeria CSS</title>
<link rel="stylesheet" href="window.css" />
<link rel="stylesheet" href="gallery.css" />
<script src="lib/prefixfree.js"></script>
<script src="fancyGallery.js"></script>
</head>
<body>
<div class="window">
<header>
<h1>Simple gallery in pure CSS? NOPE! - Just only <span title="...and 80 lines of CSS">~50 lines of JS</span>.</h1>
</header>
<section id="gallery">
<div class="preview">
<img src="img/photos/1.jpg" alt="" class="proper" />
</div>
<ul class="thumbs">
<li><a href="#"><img src="img/photos/0.jpg" alt="" /></a></li>
<li><a href="#"><img src="img/photos/1_thumb.jpg" alt="" /></a></li>
<li><a href="#"><img src="img/photos/2_thumb.jpg" alt="" /></a></li>
<li><a href="#"><img src="img/photos/3.jpg" alt="" /></a></li>
<li><a href="#"><img src="img/photos/4_thumb.jpg" alt="" /></a></li>
<li><a href="#"><img src="img/photos/5_thumb.jpg" alt="" /></a></li>
<li><a href="#"><img src="img/photos/6.jpg" alt="" /></a></li>
<li><a href="#"><img src="img/photos/7_thumb.jpg" alt="" /></a></li>
</ul>
</section>
</div>
</body>
</html>