-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.html
More file actions
39 lines (23 loc) · 1.06 KB
/
example.html
File metadata and controls
39 lines (23 loc) · 1.06 KB
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
<!doctype html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title>Title</title>
<link href="source/style.css" rel="stylesheet" type="text/css" />
</head>
<body lang="en">
<h1>Gallery 1</h2>
<a href="http://placehold.it/910x100" class="myLightBox"><img src="http://placehold.it/200x200"/></a>
<a href="http://placehold.it/910x600" class="myLightBox"><img src="http://placehold.it/200x200"/></a>
<h1>Gallery 2</h2>
<a href="http://placehold.it/920x600" class="myLightBox2"><img src="http://placehold.it/200x200"/></a>
<a href="http://placehold.it/1030x1255" class="myLightBox2"><img src="http://placehold.it/200x200"/></a>
<a href="http://placehold.it/200x255" class="myLightBox2"><img src="http://placehold.it/200x200"/></a>
<script src="source/resLightbox.js"></script>
<script>
var lb = resLightbox(".myLightBox", {fullscreen: true, preload: true});
var lb2 = resLightbox(".myLightBox2");
</script>
</body>
</html>