-
Notifications
You must be signed in to change notification settings - Fork 3
/
index_dynamic.html
47 lines (37 loc) · 1.56 KB
/
index_dynamic.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link href="https://sachinchoolur.github.io/lightGallery/lightgallery/css/lightgallery.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="https://sachinchoolur.github.io/lightGallery/lightgallery/js/lightgallery.js"></script>
<script src="https://sachinchoolur.github.io/lightGallery/lightgallery/js/lg-fullscreen.js"></script>
<script src="https://sachinchoolur.github.io/lightGallery/lightgallery/js/lg-thumbnail.js"></script>
<script src="lg-deletebutton.js"></script>
</head>
<body>
<div id="v2">
</div>
<script>
$('#v2').lightGallery({
dynamic: true,
dynamicEl: [{
"src": 'https://placehold.it/250x150',
'thumb': 'https://placehold.it/250x150',
}, {
'src': 'https://placehold.it/350x150',
'thumb': 'https://placehold.it/350x150',
}, {
'src': 'https://placehold.it/250x150',
'thumb': 'https://placehold.it/250x150',
}, {
'src': 'https://placehold.it/450x150',
'thumb': 'https://placehold.it/450x150',
}]
});
</script>
</body>
</html>