forked from lucachr/pelican-mg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
executable file
·140 lines (114 loc) · 5.08 KB
/
gallery.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<link rel="stylesheet" href="/theme/3rd/photoswipe/dist/photoswipe.css">
<link rel="stylesheet" href="/theme/3rd/photoswipe/dist/default-skin/default-skin.css">
<script src="/theme/3rd/photoswipe/dist/photoswipe.min.js"></script>
<script src="/theme/3rd/photoswipe/dist/photoswipe-ui-default.min.js"></script>
<style>
.gallery
{
display: flex;
flex-wrap: wrap;
}
.galleryitem {
background-size: cover;
background-repeat: no-repeat;
background-position: 50% 50%;
width: 240px;
height: 240px;
margin: 2px;
position: relative;
}
@media (max-width: 767px) and (orientation: portrait) {
.galleryitem {
width: 140px;
height: 140px;
}
}
.itemcap {
text-align: center;
position: absolute;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
bottom: 0px;
width: 100%;
left: 0px;
color: rgb(204, 204, 204);
background-color: rgba(0, 0, 0, 0.5);
}
</style>
<div class="gallery">
{% for name, photo, thumb, exif, caption, size in article.photo_gallery %}
<a href="javascript:openGallery({{ loop.index-1 }})" title="{{ name }}" exif="{{ exif }}" caption="{{ caption }}">
<div class="galleryitem" data-index="{{ loop.index }}" style="background-image: url('{{ SITEURL }}/{{ thumb }}')">
{% if caption %}
<span class="itemcap">
{{ caption }}</span>
{% endif %}
</div>
</a>
{% endfor %}
</div>
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div>
<button class="pswp__button pswp__button--close" title="Close (Esc)"></button>
<!-- button class="pswp__button pswp__button--share" title="Share"></button -->
<button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
<button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div>
<button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
</button>
<button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
</button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div>
<script>
var slides = [];
{% for name, photo, thumb, exif, caption, size in article.photo_gallery %}
slides.push({ src: '{{photo}}', msrc: '{{thumb}}', w: {{size[0]}}, h: {{size[1]}}, title: '{{ caption }}' });
{% endfor %}
var pswpElement = document.querySelectorAll('.pswp')[0];
function openGallery(clickedindex) {
var options = {
closeOnScroll: false,
closeOnVerticalDrag: false,
showHideOpacity: true,
getThumbBoundsFn: function(index) {
// find thumbnail element
var thumbnail = document.querySelectorAll('.galleryitem')[index];
// get window scroll Y
var pageYScroll = window.pageYOffset || document.documentElement.scrollTop;
// optionally get horizontal scroll
// get position of element relative to viewport
var rect = thumbnail.getBoundingClientRect();
// w = width
return {x:rect.left, y:rect.top + pageYScroll, w:rect.width};
},
index: clickedindex
};
var gallery = new PhotoSwipe( pswpElement, PhotoSwipeUI_Default, slides, options);
gallery.init();
}
</script>