-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (75 loc) · 3.29 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
65
66
67
68
69
70
71
72
73
74
75
<html>
<head>
<style>
/* custom styles here */
</style>
</head>
<body>
<div id="teaser-lightbox"></div>
<div id="full-lightbox"></div>
<!-- Relative to index.html, lightbox.elm lives in `src/LightBox.elm`. -->
<!-- Prefixing that with `/_compile/` gives us magic! -->
<script src="/lightbox.js"></script>
<script>
var testImages = [
{fullSrc: " http://test/wp-content/uploads/2021/06/IMG_7124-scaled-1100x600-1-1024x559.jpg"
, thumbSrc: " http://test/wp-content/uploads/2021/06/IMG_7124-scaled-1100x600-1-150x150.jpg"
, altText: "some alt text"
}
,
{ fullSrc: "http://test/wp-content/uploads/2021/06/IMG_7349-scaled-1100x600-1-1024x559.jpg"
, thumbSrc: "http://test/wp-content/uploads/2021/06/IMG_7349-scaled-1100x600-1-150x150.jpg"
, altText: "some alt text or another"
}
,
{ fullSrc: "http://test/wp-content/uploads/2021/06/IMG_7126-scaled-1100x600-1-1024x559.jpg"
, thumbSrc: "http://test/wp-content/uploads/2021/06/IMG_7126-scaled-1100x600-1-150x150.jpg"
, altText: "some text"
}
,
{ fullSrc: "http://test/wp-content/uploads/2021/06/IMG_7130-scaled-1100x600-1-1024x559.jpg"
, thumbSrc: "http://test/wp-content/uploads/2021/06/IMG_7130-scaled-1100x600-1-150x150.jpg"
, altText: "something like alt text"
}
,
{ fullSrc: "http://test/wp-content/uploads/2021/06/IMG_7349-scaled-1100x600-1-1024x559.jpg"
, thumbSrc: "http://test/wp-content/uploads/2021/06/IMG_7349-scaled-1100x600-1-150x150.jpg"
, altText: "some alternative text"
}
,
{ fullSrc: "http://wp_pr/wp-content/uploads/2021/06/IMG_7126-scaled-1100x600-1-1024x559.jpg"
, thumbSrc: "http://wp_pr/wp-content/uploads/2021/06/IMG_7126-scaled-1100x600-1-150x150.jpg"
, altText: "and then some alt text"
}
,
{ fullSrc: "http://wp_pr/wp-content/uploads/2021/06/IMG_7130-scaled-1100x600-1-1024x559.jpg"
, thumbSrc: "http://wp_pr/wp-content/uploads/2021/06/IMG_7130-scaled-1100x600-1-150x150.jpg"
, altText: "some descriptive alt text"
}
,
{ fullSrc: "http://wp_pr/wp-content/uploads/2021/06/IMG_7349-scaled-1100x600-1-1024x559.jpg"
, thumbSrc: "http://wp_pr/wp-content/uploads/2021/06/IMG_7349-scaled-1100x600-1-150x150.jpg"
, altText: "better alt text"
}
,
{ fullSrc: "http://wp_pr/wp-content/uploads/2021/06/IMG_7126-scaled-1100x600-1-1024x559.jpg"
, thumbSrc: "http://wp_pr/wp-content/uploads/2021/06/IMG_7126-scaled-1100x600-1-150x150.jpg"
, altText: "some other alt text"
}
,
{ fullSrc: "http://wp_pr/wp-content/uploads/2021/06/IMG_7130-scaled-1100x600-1-1024x559.jpg"
, thumbSrc: "http://wp_pr/wp-content/uploads/2021/06/IMG_7130-scaled-1100x600-1-150x150.jpg"
, altText: ""
}
];
var teaser = Elm.LightBox.init({
node: document.getElementById('teaser-lightbox'),
flags: { isTeaser: "true", imageList: testImages }
});
var full = Elm.LightBox.init({
node: document.getElementById('full-lightbox'),
flags: { isTeaser: "false", imageList: testImages }
});
</script>
</body>
</html>