-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<title>A Lightbox for Flickr</title>
<link rel="stylesheet" type="text/css" href="styles/lb.css">
<script type="text/javascript" src="scripts/lb.js"></script>
</head>
<body>
<div class='app'>
<div class='header'>Welcome to the Lightbox for Flickr!</div>
<div class='main'>
<div id='galleryContainer' class='gallery'>
</div>
<div class="lightbox">
<div class="content">
<div class="prev">
<div>←</div>
</div>
<img class="picture" src="">
<div class="next">
<div>→</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
// create LightBox object with Flickr options
var lb = new LightBox({
'containerId': 'galleryContainer',
'apiKey': 'd22ceeb31ddf3c037c6e5f88fa39a249',
'photoSetId': '72157626579923453'
});
// render LightBox
lb.render();
</script>
</body>
</html>