-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
64 lines (46 loc) · 2.27 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
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<title>Darkbox</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="darkbox.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Darkbox - demo</h1>
<h2>Darkbox basic</h2>
<a data-darkbox="http://placehold.it/100x101/ff0">Call image</a>
<h2>Darkbox Single</h2>
<img src="http://placehold.it/50x50/f0f"
data-darkbox="http://placehold.it/2800x1901/f0f"
data-darkbox-description="<b>Title</b><br>Lorem ipsum dolor sit amet">
<img src="http://placehold.it/50x50/cf5"
data-darkbox="http://placehold.it/6004x5201/cf5"
data-darkbox-description="<b>Image 2</b><br>Description text...">
<h2>Darkbox Groups</h2>
<p>Group "one"</p>
<img src="http://placehold.it/50x50/f0f"
data-darkbox="http://placehold.it/800x600/f0f"
data-darkbox-group="one"
data-darkbox-description="<b>Title</b><br>Lorem ipsum dolor sit amet">
<img src="http://placehold.it/50x50/cf5"
data-darkbox="http://placehold.it/800x600/cf5"
data-darkbox-group="one"
data-darkbox-description="<b>Image 2</b><br>Description text...">
<p>Group "two"</p>
<img src="http://placehold.it/50x50/0bf"
data-darkbox="http://placehold.it/1000x600/0bf"
data-darkbox-group="two"
data-darkbox-description="<b>Title</b><br>Lorem ipsum dolor sit amet">
<img src="http://placehold.it/50x50/f0b"
data-darkbox="http://placehold.it/600x1000/f0b"
data-darkbox-group="two"
data-darkbox-description="<b>Image 2</b><br>Description text...">
<h2>Group link</h2>
<span data-darkbox-group="group2" data-darkbox="http://placehold.it/800x600/f00"></span>
<span data-darkbox-group="group2" data-darkbox="http://placehold.it/600x800/00f"></span>
<a data-darkbox-group="group2">Call group2</a>
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
<script src="darkbox.js"></script>
</body>
</html>