-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (47 loc) · 1.46 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Image Gallery</title>
<link rel="stylesheet" href="css/style.css">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<span id="test"></span>
<section class="gallery">
<div class="container">
<div class="frame">
<div class="image" style="display: none;">
<img src="images/1.jpg" alt="">
</div>
<div class="image" style="display: none;">
<img src="images/2.jpg" alt="">
</div>
<div class="image" style="display: none;">
<img src="images/1.jpg" alt="">
</div>
<div class="image" style="display: none;">
<img src="images/2.jpg" alt="">
</div>
<div class="image" style="display: none;">
<img src="images/1.jpg" alt="">
</div>
<div class="image" style="display: none;">
<img src="images/2.jpg" alt="">
</div>
<div class="image" style="display: none;">
<img src="images/2.jpg" alt="">
</div>
</div>
<div class="thumbnails"></div>
</div>
</section>
<p style="text-align: center;"><a href="http://github.com/harveylowndes/gallery">View on GitHub</a></p>
<!-- JQuery CDN -->
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<!--Gallery Javascript -->
<script src="js/gallerynew.js"></script>
</body>
</html>