jekyll-swift-theme 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +10 -1
- data/_includes/head.html +6 -1
- data/_includes/shorts/flickr-album.html +10 -0
- data/_includes/shorts/gallery.html +7 -5
- data/_sass/swift/_comments.sass +6 -0
- data/assets/galleria/galleria.js +6987 -0
- data/assets/galleria/galleria.min.js +12 -0
- data/assets/galleria/plugins/flickr/demo.html +62 -0
- data/assets/galleria/plugins/flickr/galleria.flickr.js +399 -0
- data/assets/galleria/plugins/flickr/galleria.flickr.min.js +10 -0
- data/assets/galleria/plugins/history/demo.html +98 -0
- data/assets/galleria/plugins/history/galleria.history.js +164 -0
- data/assets/galleria/plugins/history/galleria.history.min.js +10 -0
- data/assets/galleria/themes/azur/demo-cdn.html +118 -0
- data/assets/galleria/themes/azur/demo-retina.html +120 -0
- data/assets/galleria/themes/azur/demo.html +120 -0
- data/assets/galleria/themes/azur/galleria.azur.css +403 -0
- data/assets/galleria/themes/azur/galleria.azur.js +312 -0
- data/assets/galleria/themes/azur/galleria.azur.min.css +1 -0
- data/assets/galleria/themes/azur/galleria.azur.min.js +10 -0
- data/assets/galleria/themes/classic/demo-cdn.html +103 -0
- data/assets/galleria/themes/classic/demo-retina.html +106 -0
- data/assets/galleria/themes/classic/demo.html +106 -0
- data/assets/galleria/themes/classic/galleria.classic.css +217 -0
- data/assets/galleria/themes/classic/galleria.classic.js +117 -0
- data/assets/galleria/themes/classic/galleria.classic.min.css +1 -0
- data/assets/galleria/themes/classic/galleria.classic.min.js +10 -0
- data/assets/galleria/themes/folio/demo-cdn.html +106 -0
- data/assets/galleria/themes/folio/demo-retina.html +108 -0
- data/assets/galleria/themes/folio/demo.html +108 -0
- data/assets/galleria/themes/folio/galleria.folio.css +185 -0
- data/assets/galleria/themes/folio/galleria.folio.js +488 -0
- data/assets/galleria/themes/folio/galleria.folio.min.css +1 -0
- data/assets/galleria/themes/folio/galleria.folio.min.js +10 -0
- data/assets/galleria/themes/fullscreen/demo-cdn.html +103 -0
- data/assets/galleria/themes/fullscreen/demo-retina.html +105 -0
- data/assets/galleria/themes/fullscreen/demo.html +103 -0
- data/assets/galleria/themes/fullscreen/galleria.fullscreen.css +219 -0
- data/assets/galleria/themes/fullscreen/galleria.fullscreen.js +197 -0
- data/assets/galleria/themes/fullscreen/galleria.fullscreen.min.css +1 -0
- data/assets/galleria/themes/fullscreen/galleria.fullscreen.min.js +10 -0
- data/assets/galleria/themes/fullscreen/index.html +0 -0
- data/assets/galleria/themes/miniml/demo-cdn.html +113 -0
- data/assets/galleria/themes/miniml/demo-retina.html +115 -0
- data/assets/galleria/themes/miniml/demo.html +115 -0
- data/assets/galleria/themes/miniml/galleria.miniml.css +224 -0
- data/assets/galleria/themes/miniml/galleria.miniml.js +171 -0
- data/assets/galleria/themes/miniml/galleria.miniml.min.css +1 -0
- data/assets/galleria/themes/miniml/galleria.miniml.min.js +10 -0
- data/assets/galleria/themes/twelve/demo-cdn.html +120 -0
- data/assets/galleria/themes/twelve/demo-retina.html +121 -0
- data/assets/galleria/themes/twelve/demo.html +121 -0
- data/assets/galleria/themes/twelve/galleria.twelve.css +296 -0
- data/assets/galleria/themes/twelve/galleria.twelve.js +301 -0
- data/assets/galleria/themes/twelve/galleria.twelve.min.css +1 -0
- data/assets/galleria/themes/twelve/galleria.twelve.min.js +10 -0
- data/assets/js/jquery-3.6.0.min.js +2 -0
- metadata +55 -2
@@ -0,0 +1,197 @@
|
|
1
|
+
/**
|
2
|
+
* Galleria Fullscreen Theme
|
3
|
+
*
|
4
|
+
*
|
5
|
+
* Copyright (c) 2010 - 2019 worse is better UG
|
6
|
+
* Licensed under the MIT License.
|
7
|
+
*/
|
8
|
+
|
9
|
+
( function( window, factory ) {
|
10
|
+
if ( typeof define == 'function' && define.amd ) {
|
11
|
+
define( ['../galleria', 'jquery' ], function( Galleria, jQuery ) {
|
12
|
+
return factory( window, Galleria, jQuery );
|
13
|
+
});
|
14
|
+
} else if ( typeof module == 'object' && module.exports ) {
|
15
|
+
module.exports = factory(
|
16
|
+
window,
|
17
|
+
require('galleria'),
|
18
|
+
require('jquery')
|
19
|
+
);
|
20
|
+
} else {
|
21
|
+
factory(
|
22
|
+
window,
|
23
|
+
window.Galleria,
|
24
|
+
window.jQuery
|
25
|
+
);
|
26
|
+
}
|
27
|
+
}( window, function factory( window, Galleria, $ ) {
|
28
|
+
|
29
|
+
Galleria.addTheme({
|
30
|
+
name: 'fullscreen',
|
31
|
+
version: '1.6',
|
32
|
+
author: 'Galleria',
|
33
|
+
css: 'galleria.fullscreen.css',
|
34
|
+
// begin site script
|
35
|
+
defaults: {
|
36
|
+
transition: 'none',
|
37
|
+
imageCrop: true,
|
38
|
+
thumbCrop: 'height',
|
39
|
+
easing: 'galleriaOut',
|
40
|
+
trueFullscreen: false,
|
41
|
+
|
42
|
+
// set this to false if you want to keep the thumbnails:
|
43
|
+
_hideDock: Galleria.TOUCH ? false : true,
|
44
|
+
|
45
|
+
// set this to true if you want to shrink the carousel when clicking a thumbnail:
|
46
|
+
_closeOnClick: false
|
47
|
+
},
|
48
|
+
init: function(options) {
|
49
|
+
|
50
|
+
Galleria.requires( 1.5, 'This version of Fullscreen theme requires Galleria version 1.5 or later');
|
51
|
+
|
52
|
+
this.addElement('thumbnails-tab');
|
53
|
+
this.appendChild('thumbnails-container', 'thumbnails-tab');
|
54
|
+
|
55
|
+
var tab = this.$('thumbnails-tab'),
|
56
|
+
loader = this.$('loader'),
|
57
|
+
thumbs = this.$('thumbnails-container'),
|
58
|
+
list = this.$('thumbnails-list'),
|
59
|
+
infotext = this.$('info-text'),
|
60
|
+
info = this.$('info'),
|
61
|
+
OPEN = !options._hideDock,
|
62
|
+
POS = 0;
|
63
|
+
|
64
|
+
if (Galleria.IE) {
|
65
|
+
this.addElement('iefix');
|
66
|
+
this.appendChild('container', 'iefix');
|
67
|
+
this.$('iefix').css({
|
68
|
+
zIndex: 3,
|
69
|
+
position: 'absolute',
|
70
|
+
backgroundColor: this.hasVariation('light') ? '#fff' : '#000',
|
71
|
+
opacity: 0.4,
|
72
|
+
top: 0
|
73
|
+
});
|
74
|
+
}
|
75
|
+
|
76
|
+
if ( options.thumbnails === false ) {
|
77
|
+
thumbs.hide();
|
78
|
+
}
|
79
|
+
|
80
|
+
var fixCaption = this.proxy(function(img) {
|
81
|
+
|
82
|
+
var w = img.width || $(img).width();
|
83
|
+
|
84
|
+
if (!(img || w)) {
|
85
|
+
return;
|
86
|
+
}
|
87
|
+
w = Math.min(w, $(window).width());
|
88
|
+
infotext.width(w - 40);
|
89
|
+
if (Galleria.IE && this.getOptions('showInfo')) {
|
90
|
+
this.$('iefix').width(info.outerWidth()).height(info.outerHeight());
|
91
|
+
}
|
92
|
+
});
|
93
|
+
|
94
|
+
this.bind('rescale', function() {
|
95
|
+
POS = this.getStageHeight() - tab.height() - 2;
|
96
|
+
thumbs.css('top', OPEN ? POS - list.outerHeight() + 2 : POS);
|
97
|
+
var img = this.getActiveImage();
|
98
|
+
if (img) {
|
99
|
+
fixCaption(img);
|
100
|
+
}
|
101
|
+
});
|
102
|
+
|
103
|
+
this.bind('loadstart', function(e) {
|
104
|
+
if (!e.cached) {
|
105
|
+
loader.show().fadeTo(100, 1);
|
106
|
+
}
|
107
|
+
$(e.thumbTarget).css('opacity', 1).parent().siblings().children().css('opacity', 0.6);
|
108
|
+
});
|
109
|
+
|
110
|
+
this.bind('loadfinish', function(e) {
|
111
|
+
loader.fadeOut(300);
|
112
|
+
this.$('info, iefix').toggle(this.hasInfo());
|
113
|
+
});
|
114
|
+
|
115
|
+
this.bind('image', function(e) {
|
116
|
+
e.imageTarget && fixCaption(e.imageTarget);
|
117
|
+
});
|
118
|
+
|
119
|
+
this.bind('thumbnail', function(e) {
|
120
|
+
$(e.thumbTarget).parent(':not(.active)').children().css('opacity', 0.6);
|
121
|
+
$(e.thumbTarget).on('click:fast', function() {
|
122
|
+
if (OPEN && options._closeOnClick) {
|
123
|
+
tab.trigger('click:fast');
|
124
|
+
}
|
125
|
+
});
|
126
|
+
});
|
127
|
+
|
128
|
+
this.trigger('rescale');
|
129
|
+
|
130
|
+
if ( !Galleria.TOUCH ) {
|
131
|
+
|
132
|
+
this.addIdleState(thumbs, { opacity: 0 });
|
133
|
+
this.addIdleState(this.get('info'), { opacity: 0 });
|
134
|
+
|
135
|
+
this.$('image-nav-left, image-nav-right').css('opacity', 0.01).hover(function() {
|
136
|
+
$(this).animate({opacity: 1}, 100);
|
137
|
+
}, function() {
|
138
|
+
$(this).animate({opacity: 0});
|
139
|
+
}).show();
|
140
|
+
|
141
|
+
}
|
142
|
+
|
143
|
+
if (Galleria.IE) {
|
144
|
+
this.addIdleState(this.get('iefix'), { opacity: 0 });
|
145
|
+
}
|
146
|
+
|
147
|
+
if (options._hideDock) {
|
148
|
+
tab.on('click:fast', this.proxy(function() {
|
149
|
+
tab.toggleClass('open', !OPEN);
|
150
|
+
if (!OPEN) {
|
151
|
+
thumbs.animate({
|
152
|
+
top: POS - list.outerHeight() + 2
|
153
|
+
}, 400, options.easing);
|
154
|
+
} else {
|
155
|
+
thumbs.animate({
|
156
|
+
top: POS
|
157
|
+
}, 400, options.easing);
|
158
|
+
}
|
159
|
+
OPEN = !OPEN;
|
160
|
+
}));
|
161
|
+
} else {
|
162
|
+
this.bind('thumbnail', function() {
|
163
|
+
thumbs.css('top', POS - list.outerHeight() + 2);
|
164
|
+
});
|
165
|
+
tab.css('visibility', 'hidden');
|
166
|
+
}
|
167
|
+
|
168
|
+
this.$('thumbnails').children().hover(function() {
|
169
|
+
$(this).not('.active').children().stop().fadeTo(100, 1);
|
170
|
+
}, function() {
|
171
|
+
$(this).not('.active').children().stop().fadeTo(400, 0.6);
|
172
|
+
});
|
173
|
+
|
174
|
+
this.enterFullscreen();
|
175
|
+
this.attachKeyboard({
|
176
|
+
escape: function(e) {
|
177
|
+
return false;
|
178
|
+
},
|
179
|
+
up: function(e) {
|
180
|
+
if (!OPEN) {
|
181
|
+
tab.trigger('click:fast');
|
182
|
+
}
|
183
|
+
e.preventDefault();
|
184
|
+
},
|
185
|
+
down: function(e) {
|
186
|
+
if (OPEN) {
|
187
|
+
tab.trigger('click:fast');
|
188
|
+
}
|
189
|
+
e.preventDefault();
|
190
|
+
}
|
191
|
+
});
|
192
|
+
}
|
193
|
+
// end site script
|
194
|
+
});
|
195
|
+
|
196
|
+
return Galleria;
|
197
|
+
}));
|
@@ -0,0 +1 @@
|
|
1
|
+
#galleria-loader{height:1px!important}body,html{background:#000}.galleria-theme-fullscreen{height:100%;overflow:hidden;position:fixed;top:0;left:0;width:100%;background:#000;-webkit-font-smoothing:antialiased}.galleria-theme-fullscreen img{-moz-user-select:none;-webkit-user-select:none;-o-user-select:none}.galleria-theme-fullscreen .galleria-stage{width:100%;height:100%;position:absolute}.galleria-theme-fullscreen .galleria-thumbnails-container{position:absolute;bottom:0;z-index:2;padding-top:16px;width:100%}.galleria-theme-fullscreen.videoplay .galleria-thumbnails-container{display:none!important}.galleria-theme-fullscreen.videoplay .galleria-image-nav{top:80px;bottom:80px;height:auto}.galleria-theme-fullscreen .galleria-thumbnails-tab{opacity:.7;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";filter:alpha(opacity=70);position:absolute;left:50%;margin-left:-50px;top:0;height:16px;width:100px;background:url(data:image/gif;base64,R0lGODlhBwAIAIABAP///////yH5BAEAAAEALAAAAAAHAAgAAAINjGEJq8gJVVzouBpDAQA7) 50% 5px no-repeat #000;cursor:pointer;-moz-border-radius-topleft:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;-webkit-border-top-left-radius:4px}.galleria-theme-fullscreen.light .galleria-thumbnails-tab{background:url(data:image/gif;base64,R0lGODlhBwAIAIABAAAAAP///yH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4wLWMwNjAgNjEuMTM0Nzc3LCAyMDEwLzAyLzEyLTE3OjMyOjAwICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCNTQ5NTRGQTNCMUYxMUUzODczNkFGQzMzMTgxOTcxNyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCNTQ5NTRGQjNCMUYxMUUzODczNkFGQzMzMTgxOTcxNyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkI1NDk1NEY4M0IxRjExRTM4NzM2QUZDMzMxODE5NzE3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkI1NDk1NEY5M0IxRjExRTM4NzM2QUZDMzMxODE5NzE3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEAQAAAQAsAAAAAAcACAAAAg2MYQmryAlVXOi4GkMBADs=) 50% 50% no-repeat #fff;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100)}.galleria-theme-fullscreen .galleria-thumbnails-tab:hover{opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100)}.galleria-theme-fullscreen .galleria-thumbnails-tab.open,.galleria-theme-fullscreen .galleria-thumbnails-tab.open:hover{background-image:url(data:image/gif;base64,R0lGODlhBwAIAIABAP///////yH5BAEAAAEALAAAAAAHAAgAAAINjG8AoaeLIJqtJetOAQA7);opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100)}.galleria-theme-fullscreen.light .galleria-thumbnails-tab.open,.galleria-theme-fullscreen.light .galleria-thumbnails-tab.open:hover{background-image:url(data:image/gif;base64,R0lGODlhBwAIAIABAAAAAP///yH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4wLWMwNjAgNjEuMTM0Nzc3LCAyMDEwLzAyLzEyLTE3OjMyOjAwICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCNTQ5NTRGNjNCMUYxMUUzODczNkFGQzMzMTgxOTcxNyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCNTQ5NTRGNzNCMUYxMUUzODczNkFGQzMzMTgxOTcxNyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkI1NDk1NEY0M0IxRjExRTM4NzM2QUZDMzMxODE5NzE3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkI1NDk1NEY1M0IxRjExRTM4NzM2QUZDMzMxODE5NzE3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEAQAAAQAsAAAAAAcACAAAAg2MbwChp4sgmq0l604BADs=)}.galleria-theme-fullscreen .galleria-thumbnails{background:#000;overflow:hidden}.galleria-theme-fullscreen .galleria-thumbnails-list{background:#000;padding-top:5px;padding-bottom:5px;overflow:hidden}.galleria-theme-fullscreen.light .galleria-thumbnails,.galleria-theme-fullscreen.light .galleria-thumbnails-list{background:#fff}.galleria-theme-fullscreen .galleria-thumbnails .galleria-image{width:80px;height:50px;float:left;cursor:pointer;margin-right:5px}.galleria-theme-fullscreen .galleria-thumbnails .galleria-image img{background:#000}.galleria-theme-fullscreen .galleria-thumbnails .active{cursor:default}.galleria-theme-fullscreen .galleria-carousel .galleria-thumbnails-list{border-left:30px solid #000;border-right:30px solid #000}.galleria-theme-fullscreen.light .galleria-carousel .galleria-thumbnails-list{border-color:#fff}.galleria-theme-fullscreen .galleria-image-nav{width:100%;height:100%;position:absolute;top:0;left:0}.galleria-theme-fullscreen .galleria-image-nav-left,.galleria-theme-fullscreen .galleria-image-nav-right{width:100px;right:0;top:0;bottom:0;background:url(data:image/gif;base64,R0lGODlhHgAeAIABAP///////yH5BAEAAAEALAAAAAAeAB4AAAIphI+py+0Po5y02ouz3isEnnggIo5GaaKjurGam8GYfNHmjef6zve+WQAAOw==) 50% 50% no-repeat;position:absolute;cursor:pointer;z-index:2;display:none}.galleria-theme-fullscreen.smallarrows .galleria-image-nav-right{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpGNUE2OTE5MjNCNjQxMUUzQUI1Q0E4NEE3NjU5N0I3NSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpGNUE2OTE5MzNCNjQxMUUzQUI1Q0E4NEE3NjU5N0I3NSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkY1QTY5MTkwM0I2NDExRTNBQjVDQTg0QTc2NTk3Qjc1IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkY1QTY5MTkxM0I2NDExRTNBQjVDQTg0QTc2NTk3Qjc1Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+in5zKAAAAMBJREFUeNrE18EKxCAMBNAaWtjT/v939lTwYCNYKAu7m8yMVBBRhJdi28TSWlueaGt0Yynl5cPmvXqwBwtbBnVw7+OYz4dv6KLCo3B16H1NFHgIHmcqxaNPLMcts1mJWzZSFW7I+ShwQ99KFjfmW2RwY/9AKE7DKC6B/+FT4Y9Ecq31IOo0+Bf6LYXaEygNoygFMygMsygEK9A0rEJTsBJFq0wahapMBQpVmQo0fJPoiIMyNHWFGRgNyrNTtp0CDACOjOY0UOB3+QAAAABJRU5ErkJggg==)}.galleria-theme-fullscreen .galleria-image-nav-left{left:0;right:auto;background-image:url(data:image/gif;base64,R0lGODlhHgAeAIABAP///////yH5BAEAAAEALAAAAAAeAB4AAAIphI+py+0Po5y02ouz3i0EfnigIY4leHIp+o1k664qbNLujef6zvd+XgAAOw==)}.galleria-theme-fullscreen.smallarrows .galleria-image-nav-left{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpGNUE2OTE4RTNCNjQxMUUzQUI1Q0E4NEE3NjU5N0I3NSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpGNUE2OTE4RjNCNjQxMUUzQUI1Q0E4NEE3NjU5N0I3NSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjk5M0Q5RDU3M0I2MzExRTNBQjVDQTg0QTc2NTk3Qjc1IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjk5M0Q5RDU4M0I2MzExRTNBQjVDQTg0QTc2NTk3Qjc1Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+jbqELAAAAJhJREFUeNrM17kOgCAMgGE7mLjI+z+nLCYO2MWEBeRo/SUhHANfCFeRlNJCJLGARWTTYtV86XjnJ/CD6jiH1kMrPgXnaNYXtB3d4BLqOuNZdAi2QLthK7QLtkSbYWu0CfZAX2EvtAp7okXYG63Buyf6vxlja4zuavQcozcXelejrxP6HqMRCBpzoVEmGlejPwn07zSSbgEGANleQtRAGH+dAAAAAElFTkSuQmCC)}.galleria-theme-fullscreen .galleria-loader{width:30px;height:30px;background:url(data:image/gif;base64,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) 50% 50% no-repeat #fff;position:absolute;top:50%;left:50%;margin-top:-15px;margin-left:-15px;z-index:3}.galleria-theme-fullscreen .galleria-info{z-index:4;font:13px/1.4 helvetica,arial,sans-serif;color:#fff;position:absolute;top:0;width:100%;border-top:2px solid #000;display:none;text-align:center;padding:10px 0;background:rgba(0,0,0,.5);border-bottom:1px solid rgba(0,0,0,.1)}.galleria-theme-fullscreen.light .galleria-info{background:rgba(255,255,255,.5);color:#000}.galleria-theme-fullscreen .galleria-info-text{width:50%;margin:0 auto}.galleria-theme-fullscreen .galleria-info-title{font-weight:700;display:inline-block;margin-right:10px}.galleria-theme-fullscreen .galleria-info-description{display:inline-block}.galleria-theme-fullscreen .galleria-thumb-nav-left,.galleria-theme-fullscreen .galleria-thumb-nav-right{cursor:pointer;display:none;background:url(data:image/gif;base64,R0lGODlhBwAOAIABAP///////yH5BAEAAAEALAAAAAAHAA4AAAITjA9nkNj7AlPTKRnhxbvSzF1AAQA7) 50% 50% no-repeat;position:absolute;left:5px;top:21px;bottom:5px;width:20px;z-index:3;opacity:.8;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";filter:alpha(opacity=80)}.galleria-theme-fullscreen.light .galleria-thumb-nav-left{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAOCAYAAADjXQYbAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo4MjE1RDBEQjNCNjUxMUUzQUI1Q0E4NEE3NjU5N0I3NSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo4MjE1RDBEQzNCNjUxMUUzQUI1Q0E4NEE3NjU5N0I3NSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkY1QTY5MTk4M0I2NDExRTNBQjVDQTg0QTc2NTk3Qjc1IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjgyMTVEMERBM0I2NTExRTNBQjVDQTg0QTc2NTk3Qjc1Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+TCvkwQAAAEZJREFUeNqE0EkKADAIBMG0//9zNgi4ZNBDLjUaEWCImqbgPKZgF6YgdwbwWODhF9RCAUmjS+c34MeWQP6T7kJ0t72BJcAAQ0YMHhMIeE4AAAAASUVORK5CYII=)}.galleria-theme-fullscreen .galleria-thumb-nav-right{background-image:url(data:image/gif;base64,R0lGODlhBwAOAIABAP///////yH5BAEAAAEALAAAAAAHAA4AAAISRI5geMq9mHtTRmhzujV0/wQFADs=);left:auto;right:5px}.galleria-theme-fullscreen.light .galleria-thumb-nav-right{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAOCAYAAADjXQYbAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpGNUE2OTE5NjNCNjQxMUUzQUI1Q0E4NEE3NjU5N0I3NSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpGNUE2OTE5NzNCNjQxMUUzQUI1Q0E4NEE3NjU5N0I3NSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkY1QTY5MTk0M0I2NDExRTNBQjVDQTg0QTc2NTk3Qjc1IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkY1QTY5MTk1M0I2NDExRTNBQjVDQTg0QTc2NTk3Qjc1Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+ZoIU8AAAAEpJREFUeNp0kEkOADAIAoH//9le2sYFvWjCKAaSDACEKd0em8gNeJsWUJoHoHapADJ/fMCJ2M5mT2oT+mY0z5EQu6cVXEKljgADAGy8DB8XieyIAAAAAElFTkSuQmCC)}.galleria-theme-fullscreen .galleria-carousel .galleria-thumb-nav-left,.galleria-theme-fullscreen .galleria-carousel .galleria-thumb-nav-right{display:block}.galleria-theme-fullscreen .galleria-carousel .galleria-thumb-nav-left:hover,.galleria-theme-fullscreen .galleria-carousel .galleria-thumb-nav-right:hover{background-color:#222}.galleria-theme-fullscreen .galleria-thumb-nav-left.disabled,.galleria-theme-fullscreen .galleria-thumb-nav-left.disabled:hover,.galleria-theme-fullscreen .galleria-thumb-nav-right.disabled,.galleria-theme-fullscreen .galleria-thumb-nav-right.disabled:hover{opacity:.2;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";filter:alpha(opacity=20);cursor:default}.galleria-theme-fullscreen.light .galleria-carousel .galleria-thumb-nav-left:hover,.galleria-theme-fullscreen.light .galleria-carousel .galleria-thumb-nav-right:hover{background-color:#ddd}.galleria-theme-fullscreen .galleria-exit{width:50px;height:50px;position:absolute;top:-4px;right:0;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAABkCAYAAADE6GNbAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDE0RTQ3NTE0NDRCMTFFMDk3RTlEODE0MzMwRjM5RUUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDE0RTQ3NTI0NDRCMTFFMDk3RTlEODE0MzMwRjM5RUUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0MTRFNDc0RjQ0NEIxMUUwOTdFOUQ4MTQzMzBGMzlFRSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0MTRFNDc1MDQ0NEIxMUUwOTdFOUQ4MTQzMzBGMzlFRSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgvyY1sAAAG9SURBVHja7Nkxa8JAFMDx0wiC4NShCB38Eg5CJ4eCH6J0zifqLP0WDl0d/BIZCqWzEOgQ0he4wCF3lyG58Br+Bw+j3mF+vOe7RGd1XZspjLmZyAACBAgQIECAAAECBAiQKUCWEkeJZ4ksMi+zc452jTrIQeJBYiuxD2Ay+97Wzj1ohNycYx/GRfjW9BqLASEXB+E+tq/fIwrnPVWQKoIxAUQ11IfPEvwc5CshkxKRqv22mSnGQrCP9CitWGtWBckC3alIjVmMgLh4OpfbmittGdlHWqyvAbSZUVda647u5MOsNe4jS3vtdOsombYEG8SnxK/WDZH7ESBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgDTjUeIscZJYReat7JyzXTPIGPLP0ObEnuzxVSKXKD2Id4mdff4l8aItI9/O8c6e8CqCuF+jBpLbTPgwPkSbNXWlZSInbAKIUiskhDEpEanab+kps6QI9pEepeXrZiohoS/7NTVmPgIi72jN6rrWqaPFhqBv2jKy6ehOvm620ZiR5gLww152xFpsm5kG8Srxo3VD5H4ECBAgQIAAAQIECBAgQP7j+BNgAOhPfpgJajmFAAAAAElFTkSuQmCC) no-repeat;z-index:100;cursor:pointer}.galleria-theme-fullscreen .galleria-exit:hover{background-position:0 -50px}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
/**
|
2
|
+
* Galleria - v1.6.1 2019-10-17
|
3
|
+
*
|
4
|
+
*
|
5
|
+
* Copyright (c) 2010 - 2019 worse is better UG
|
6
|
+
* Licensed under the MIT License.
|
7
|
+
*/
|
8
|
+
|
9
|
+
|
10
|
+
!function(a,b){"function"==typeof define&&define.amd?define(["../galleria","jquery"],function(c,d){return b(a,c,d)}):"object"==typeof module&&module.exports?module.exports=b(a,require("galleria"),require("jquery")):b(a,a.Galleria,a.jQuery)}(window,function(a,b,c){return b.addTheme({name:"fullscreen",version:"1.6",author:"Galleria",css:"galleria.fullscreen.css",defaults:{transition:"none",imageCrop:!0,thumbCrop:"height",easing:"galleriaOut",trueFullscreen:!1,_hideDock:!b.TOUCH,_closeOnClick:!1},init:function(d){b.requires(1.5,"This version of Fullscreen theme requires Galleria version 1.5 or later"),this.addElement("thumbnails-tab"),this.appendChild("thumbnails-container","thumbnails-tab");var e=this.$("thumbnails-tab"),f=this.$("loader"),g=this.$("thumbnails-container"),h=this.$("thumbnails-list"),i=this.$("info-text"),j=this.$("info"),k=!d._hideDock,l=0;b.IE&&(this.addElement("iefix"),this.appendChild("container","iefix"),this.$("iefix").css({zIndex:3,position:"absolute",backgroundColor:this.hasVariation("light")?"#fff":"#000",opacity:.4,top:0})),!1===d.thumbnails&&g.hide();var m=this.proxy(function(d){var e=d.width||c(d).width();(d||e)&&(e=Math.min(e,c(a).width()),i.width(e-40),b.IE&&this.getOptions("showInfo")&&this.$("iefix").width(j.outerWidth()).height(j.outerHeight()))});this.bind("rescale",function(){l=this.getStageHeight()-e.height()-2,g.css("top",k?l-h.outerHeight()+2:l);var a=this.getActiveImage();a&&m(a)}),this.bind("loadstart",function(a){a.cached||f.show().fadeTo(100,1),c(a.thumbTarget).css("opacity",1).parent().siblings().children().css("opacity",.6)}),this.bind("loadfinish",function(a){f.fadeOut(300),this.$("info, iefix").toggle(this.hasInfo())}),this.bind("image",function(a){a.imageTarget&&m(a.imageTarget)}),this.bind("thumbnail",function(a){c(a.thumbTarget).parent(":not(.active)").children().css("opacity",.6),c(a.thumbTarget).on("click:fast",function(){k&&d._closeOnClick&&e.trigger("click:fast")})}),this.trigger("rescale"),b.TOUCH||(this.addIdleState(g,{opacity:0}),this.addIdleState(this.get("info"),{opacity:0}),this.$("image-nav-left, image-nav-right").css("opacity",.01).hover(function(){c(this).animate({opacity:1},100)},function(){c(this).animate({opacity:0})}).show()),b.IE&&this.addIdleState(this.get("iefix"),{opacity:0}),d._hideDock?e.on("click:fast",this.proxy(function(){e.toggleClass("open",!k),k?g.animate({top:l},400,d.easing):g.animate({top:l-h.outerHeight()+2},400,d.easing),k=!k})):(this.bind("thumbnail",function(){g.css("top",l-h.outerHeight()+2)}),e.css("visibility","hidden")),this.$("thumbnails").children().hover(function(){c(this).not(".active").children().stop().fadeTo(100,1)},function(){c(this).not(".active").children().stop().fadeTo(400,.6)}),this.enterFullscreen(),this.attachKeyboard({escape:function(a){return!1},up:function(a){k||e.trigger("click:fast"),a.preventDefault()},down:function(a){k&&e.trigger("click:fast"),a.preventDefault()}})}}),b});
|
File without changes
|
@@ -0,0 +1,113 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=0.5,user-scalable=no">
|
6
|
+
<title>Galleria Miniml Theme</title>
|
7
|
+
|
8
|
+
<link rel="stylesheet" type="text/css" href="galleria.miniml.min.css" />
|
9
|
+
|
10
|
+
<style>
|
11
|
+
|
12
|
+
/* Demo styles */
|
13
|
+
|
14
|
+
html,body{background:#eee;margin:0;}
|
15
|
+
.content{color:#777;font:12px/1.4 "helvetica neue",arial,sans-serif;margin:20px auto;max-width:820px}
|
16
|
+
h1{font-size:12px;font-weight:normal;color:#222;margin:0;}
|
17
|
+
p{margin:0 0 20px}
|
18
|
+
a {color:#22BCB9;text-decoration:none;}
|
19
|
+
.galleria-info-description a {color: #bbb;}
|
20
|
+
.cred{margin-top:20px;font-size:11px;}
|
21
|
+
|
22
|
+
/* Gallery measures that will be applied */
|
23
|
+
.galleria {
|
24
|
+
height:420px; /* defines a static gallery height */
|
25
|
+
max-width:820px; /* defines a responsive width */
|
26
|
+
}
|
27
|
+
|
28
|
+
</style>
|
29
|
+
</head>
|
30
|
+
<body>
|
31
|
+
<div class="content">
|
32
|
+
<h1>Galleria Miniml Theme</h1>
|
33
|
+
<p>Demonstrating a basic gallery example.</p>
|
34
|
+
|
35
|
+
<div class="galleria">
|
36
|
+
<a href="https://picsum.photos/id/389/1024/768.jpg">
|
37
|
+
<img src="https://picsum.photos/id/389/150/100.jpg"
|
38
|
+
data-big="https://picsum.photos/id/389/1440/1080.jpg"
|
39
|
+
data-description="by <a href="https://unsplash.com/photos/bt-Sc22W-BE">Jake Hills</a> on <a href="https://unsplash.com">Unsplash</a>"
|
40
|
+
data-title="Footsteps">
|
41
|
+
</a>
|
42
|
+
<a href="https://picsum.photos/id/675/1024/768.jpg">
|
43
|
+
<img src="https://picsum.photos/id/675/150/100.jpg"
|
44
|
+
data-big="https://picsum.photos/id/675/1440/1080.jpg"
|
45
|
+
data-description="by <a href="https://unsplash.com/photos/hBYzBU1xP6s">Barn Images</a> on <a href="https://unsplash.com">Unsplash</a>"
|
46
|
+
data-title="Waves washes on beach shore">
|
47
|
+
</a>
|
48
|
+
<a href="https://picsum.photos/id/525/1024/768.jpg">
|
49
|
+
<img src="https://picsum.photos/id/525/150/100.jpg"
|
50
|
+
data-big="https://picsum.photos/id/525/1440/1080.jpg"
|
51
|
+
data-description="by <a href="https://unsplash.com/photos/aViOQZzikVs">Luca Zanon</a> on <a href="https://unsplash.com">Unsplash</a>"
|
52
|
+
data-title="Extreme Desert Hike">
|
53
|
+
</a>
|
54
|
+
<a href="https://picsum.photos/id/349/1024/768.jpg">
|
55
|
+
<img src="https://picsum.photos/id/349/150/100.jpg"
|
56
|
+
data-big="https://picsum.photos/id/349/1440/1080.jpg"
|
57
|
+
data-description="by <a href="https://unsplash.com/photos/FmMivfgHCiM">Caleb George</a> on <a href="https://unsplash.com">Unsplash</a>"
|
58
|
+
data-title="Man in front of skyline">
|
59
|
+
</a>
|
60
|
+
<a href="https://picsum.photos/id/120/1024/768.jpg">
|
61
|
+
<img src="https://picsum.photos/id/120/150/100.jpg"
|
62
|
+
data-big="https://picsum.photos/id/120/1440/1080.jpg"
|
63
|
+
data-description="by <a href="https://unsplash.com/photos/_DA3D5P71qs">Guillaume</a> on <a href="https://unsplash.com">Unsplash</a>"
|
64
|
+
data-title="Milky Way Night Sky">
|
65
|
+
</a>
|
66
|
+
<a href="https://picsum.photos/id/299/1024/768.jpg">
|
67
|
+
<img src="https://picsum.photos/id/299/150/100.jpg"
|
68
|
+
data-big="https://picsum.photos/id/299/1440/1080.jpg"
|
69
|
+
data-description="by <a href="https://unsplash.com/photos/nOhUx3tiaQQ">Matthew Wiebe</a> on <a href="https://unsplash.com">Unsplash</a>"
|
70
|
+
data-title="My favorite building in the city">
|
71
|
+
</a>
|
72
|
+
<a href="https://picsum.photos/id/219/1024/768.jpg">
|
73
|
+
<img src="https://picsum.photos/id/219/150/100.jpg"
|
74
|
+
data-big="https://picsum.photos/id/219/1440/1080.jpg"
|
75
|
+
data-description="by <a href="https://unsplash.com/photos/7iB4OZDlRok">Martyn Seddon</a> on <a href="https://unsplash.com">Unsplash</a>"
|
76
|
+
data-title="Encounter with a leopard">
|
77
|
+
</a>
|
78
|
+
<a href="https://picsum.photos/id/856/1024/768.jpg">
|
79
|
+
<img src="https://picsum.photos/id/856/150/100.jpg"
|
80
|
+
data-big="https://picsum.photos/id/856/1440/1080.jpg"
|
81
|
+
data-description="by <a href="https://unsplash.com/photos/omKdUQ9R3Zo">Olu Eletu</a> on <a href="https://unsplash.com">Unsplash</a>"
|
82
|
+
data-title="Elegant man with hot coffee">
|
83
|
+
</a>
|
84
|
+
<a href="https://picsum.photos/id/531/1024/768.jpg">
|
85
|
+
<img src="https://picsum.photos/id/531/150/100.jpg"
|
86
|
+
data-big="https://picsum.photos/id/531/1440/1080.jpg"
|
87
|
+
data-description="by <a href="https://unsplash.com/photos/zr8msYQhfRg">Jeff Sheldon</a> on <a href="https://unsplash.com">Unsplash</a>"
|
88
|
+
data-title="Vintage cameras">
|
89
|
+
</a>
|
90
|
+
<a href="https://picsum.photos/id/426/1024/768.jpg">
|
91
|
+
<img src="https://picsum.photos/id/426/150/100.jpg"
|
92
|
+
data-big="https://picsum.photos/id/426/1440/1080.jpg"
|
93
|
+
data-description="by <a href="https://unsplash.com/photos/01ZeHnK3F_4">Ales Krivec</a> on <a href="https://unsplash.com">Unsplash</a>"
|
94
|
+
data-title="Valley town">
|
95
|
+
</a>
|
96
|
+
</div>
|
97
|
+
|
98
|
+
|
99
|
+
</div>
|
100
|
+
<!-- load jQuery -->
|
101
|
+
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.js"></script> -->
|
102
|
+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.js"></script>
|
103
|
+
<!-- load Galleria -->
|
104
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/galleria/1.6.1/galleria.min.js"></script>
|
105
|
+
<script src="galleria.miniml.min.js"></script>
|
106
|
+
<script>
|
107
|
+
$(function() {
|
108
|
+
// Initialize Galleria
|
109
|
+
Galleria.run('.galleria');
|
110
|
+
});
|
111
|
+
</script>
|
112
|
+
</body>
|
113
|
+
</html>
|
@@ -0,0 +1,115 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=0.5,user-scalable=no">
|
6
|
+
<title>Galleria Miniml Theme</title>
|
7
|
+
<style>
|
8
|
+
|
9
|
+
/* Demo styles */
|
10
|
+
|
11
|
+
html,body{background:#eee;margin:0;}
|
12
|
+
.content{color:#777;font:12px/1.4 "helvetica neue",arial,sans-serif;margin:20px auto;max-width:820px}
|
13
|
+
h1{font-size:12px;font-weight:normal;color:#222;margin:0;}
|
14
|
+
p{margin:0 0 20px}
|
15
|
+
a {color:#22BCB9;text-decoration:none;}
|
16
|
+
.galleria-info-description a {color: #bbb;}
|
17
|
+
.cred{margin-top:20px;font-size:11px;}
|
18
|
+
|
19
|
+
/* Gallery measures that will be applied */
|
20
|
+
.galleria {
|
21
|
+
height:420px; /* defines a static gallery height */
|
22
|
+
max-width:820px; /* defines a responsive width */
|
23
|
+
}
|
24
|
+
|
25
|
+
</style>
|
26
|
+
|
27
|
+
<!-- load jQuery -->
|
28
|
+
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.js"></script> -->
|
29
|
+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.js"></script>
|
30
|
+
|
31
|
+
<!-- load Galleria -->
|
32
|
+
<script src="../../galleria.js"></script>
|
33
|
+
|
34
|
+
</head>
|
35
|
+
<body>
|
36
|
+
<div class="content">
|
37
|
+
<h1>Galleria Miniml Theme</h1>
|
38
|
+
<p>Demonstrating a basic gallery example.</p>
|
39
|
+
|
40
|
+
<div class="galleria">
|
41
|
+
<a href="https://picsum.photos/id/389/1024/768.jpg" data-srcset="https://picsum.photos/id/389/1024/768.jpg 1x, https://picsum.photos/id/389/2048/1536.jpg 2x">
|
42
|
+
<img src="https://picsum.photos/id/389/150/100.jpg" srcset="https://picsum.photos/id/389/150/100.jpg 1x, https://picsum.photos/id/389/300/200.jpg 2x"
|
43
|
+
data-big="https://picsum.photos/id/389/1440/1080.jpg" data-bigsrcset="https://picsum.photos/id/389/1440/1080.jpg 1x, https://picsum.photos/id/389/2880/2160.jpg 2x"
|
44
|
+
data-description="by <a href="https://unsplash.com/photos/bt-Sc22W-BE">Jake Hills</a> on <a href="https://unsplash.com">Unsplash</a>"
|
45
|
+
data-title="Footsteps">
|
46
|
+
</a>
|
47
|
+
<a href="https://picsum.photos/id/675/1024/768.jpg" data-srcset="https://picsum.photos/id/675/1024/768.jpg 1x, https://picsum.photos/id/675/2048/1536.jpg 2x">
|
48
|
+
<img src="https://picsum.photos/id/675/150/100.jpg" srcset="https://picsum.photos/id/675/150/100.jpg 1x, https://picsum.photos/id/675/300/200.jpg 2x"
|
49
|
+
data-big="https://picsum.photos/id/675/1440/1080.jpg" data-bigsrcset="https://picsum.photos/id/675/1440/1080.jpg 1x, https://picsum.photos/id/675/2880/2160.jpg 2x"
|
50
|
+
data-description="by <a href="https://unsplash.com/photos/hBYzBU1xP6s">Barn Images</a> on <a href="https://unsplash.com">Unsplash</a>"
|
51
|
+
data-title="Waves washes on beach shore">
|
52
|
+
</a>
|
53
|
+
<a href="https://picsum.photos/id/525/1024/768.jpg" data-srcset="https://picsum.photos/id/525/1024/768.jpg 1x, https://picsum.photos/id/525/2048/1536.jpg 2x">
|
54
|
+
<img src="https://picsum.photos/id/525/150/100.jpg" srcset="https://picsum.photos/id/525/150/100.jpg 1x, https://picsum.photos/id/525/300/200.jpg 2x"
|
55
|
+
data-big="https://picsum.photos/id/525/1440/1080.jpg" data-bigsrcset="https://picsum.photos/id/525/1440/1080.jpg 1x, https://picsum.photos/id/525/2880/2160.jpg 2x"
|
56
|
+
data-description="by <a href="https://unsplash.com/photos/aViOQZzikVs">Luca Zanon</a> on <a href="https://unsplash.com">Unsplash</a>"
|
57
|
+
data-title="Extreme Desert Hike">
|
58
|
+
</a>
|
59
|
+
<a href="https://picsum.photos/id/349/1024/768.jpg" data-srcset="https://picsum.photos/id/349/1024/768.jpg 1x, https://picsum.photos/id/349/2048/1536.jpg 2x">
|
60
|
+
<img src="https://picsum.photos/id/349/150/100.jpg" srcset="https://picsum.photos/id/349/150/100.jpg 1x, https://picsum.photos/id/349/300/200.jpg 2x"
|
61
|
+
data-big="https://picsum.photos/id/349/1440/1080.jpg" data-bigsrcset="https://picsum.photos/id/349/1440/1080.jpg 1x, https://picsum.photos/id/349/2880/2160.jpg 2x"
|
62
|
+
data-description="by <a href="https://unsplash.com/photos/FmMivfgHCiM">Caleb George</a> on <a href="https://unsplash.com">Unsplash</a>"
|
63
|
+
data-title="Man in front of skyline">
|
64
|
+
</a>
|
65
|
+
<a href="https://picsum.photos/id/120/1024/768.jpg" data-srcset="https://picsum.photos/id/120/1024/768.jpg 1x, https://picsum.photos/id/120/2048/1536.jpg 2x">
|
66
|
+
<img src="https://picsum.photos/id/120/150/100.jpg" srcset="https://picsum.photos/id/120/150/100.jpg 1x, https://picsum.photos/id/120/300/200.jpg 2x"
|
67
|
+
data-big="https://picsum.photos/id/120/1440/1080.jpg" data-bigsrcset="https://picsum.photos/id/120/1440/1080.jpg 1x, https://picsum.photos/id/120/2880/2160.jpg 2x"
|
68
|
+
data-description="by <a href="https://unsplash.com/photos/_DA3D5P71qs">Guillaume</a> on <a href="https://unsplash.com">Unsplash</a>"
|
69
|
+
data-title="Milky Way Night Sky">
|
70
|
+
</a>
|
71
|
+
<a href="https://picsum.photos/id/299/1024/768.jpg" data-srcset="https://picsum.photos/id/299/1024/768.jpg 1x, https://picsum.photos/id/299/2048/1536.jpg 2x">
|
72
|
+
<img src="https://picsum.photos/id/299/150/100.jpg" srcset="https://picsum.photos/id/299/150/100.jpg 1x, https://picsum.photos/id/299/300/200.jpg 2x"
|
73
|
+
data-big="https://picsum.photos/id/299/1440/1080.jpg" data-bigsrcset="https://picsum.photos/id/299/1440/1080.jpg 1x, https://picsum.photos/id/299/2880/2160.jpg 2x"
|
74
|
+
data-description="by <a href="https://unsplash.com/photos/nOhUx3tiaQQ">Matthew Wiebe</a> on <a href="https://unsplash.com">Unsplash</a>"
|
75
|
+
data-title="My favorite building in the city">
|
76
|
+
</a>
|
77
|
+
<a href="https://picsum.photos/id/219/1024/768.jpg" data-srcset="https://picsum.photos/id/219/1024/768.jpg 1x, https://picsum.photos/id/219/2048/1536.jpg 2x">
|
78
|
+
<img src="https://picsum.photos/id/219/150/100.jpg" srcset="https://picsum.photos/id/219/150/100.jpg 1x, https://picsum.photos/id/219/300/200.jpg 2x"
|
79
|
+
data-big="https://picsum.photos/id/219/1440/1080.jpg" data-bigsrcset="https://picsum.photos/id/219/1440/1080.jpg 1x, https://picsum.photos/id/219/2880/2160.jpg 2x"
|
80
|
+
data-description="by <a href="https://unsplash.com/photos/7iB4OZDlRok">Martyn Seddon</a> on <a href="https://unsplash.com">Unsplash</a>"
|
81
|
+
data-title="Encounter with a leopard">
|
82
|
+
</a>
|
83
|
+
<a href="https://picsum.photos/id/856/1024/768.jpg" data-srcset="https://picsum.photos/id/856/1024/768.jpg 1x, https://picsum.photos/id/856/2048/1536.jpg 2x">
|
84
|
+
<img src="https://picsum.photos/id/856/150/100.jpg" srcset="https://picsum.photos/id/856/150/100.jpg 1x, https://picsum.photos/id/856/300/200.jpg 2x"
|
85
|
+
data-big="https://picsum.photos/id/856/1440/1080.jpg" data-bigsrcset="https://picsum.photos/id/856/1440/1080.jpg 1x, https://picsum.photos/id/856/2880/2160.jpg 2x"
|
86
|
+
data-description="by <a href="https://unsplash.com/photos/omKdUQ9R3Zo">Olu Eletu</a> on <a href="https://unsplash.com">Unsplash</a>"
|
87
|
+
data-title="Elegant man with hot coffee">
|
88
|
+
</a>
|
89
|
+
<a href="https://picsum.photos/id/531/1024/768.jpg" data-srcset="https://picsum.photos/id/531/1024/768.jpg 1x, https://picsum.photos/id/531/2048/1536.jpg 2x">
|
90
|
+
<img src="https://picsum.photos/id/531/150/100.jpg" srcset="https://picsum.photos/id/531/150/100.jpg 1x, https://picsum.photos/id/531/300/200.jpg 2x"
|
91
|
+
data-big="https://picsum.photos/id/531/1440/1080.jpg" data-bigsrcset="https://picsum.photos/id/531/1440/1080.jpg 1x, https://picsum.photos/id/531/2880/2160.jpg 2x"
|
92
|
+
data-description="by <a href="https://unsplash.com/photos/zr8msYQhfRg">Jeff Sheldon</a> on <a href="https://unsplash.com">Unsplash</a>"
|
93
|
+
data-title="Vintage cameras">
|
94
|
+
</a>
|
95
|
+
<a href="https://picsum.photos/id/426/1024/768.jpg" data-srcset="https://picsum.photos/id/426/1024/768.jpg 1x, https://picsum.photos/id/426/2048/1536.jpg 2x">
|
96
|
+
<img src="https://picsum.photos/id/426/150/100.jpg" srcset="https://picsum.photos/id/426/150/100.jpg 1x, https://picsum.photos/id/426/300/200.jpg 2x"
|
97
|
+
data-big="https://picsum.photos/id/426/1440/1080.jpg" data-bigsrcset="https://picsum.photos/id/426/1440/1080.jpg 1x, https://picsum.photos/id/426/2880/2160.jpg 2x"
|
98
|
+
data-description="by <a href="https://unsplash.com/photos/01ZeHnK3F_4">Ales Krivec</a> on <a href="https://unsplash.com">Unsplash</a>"
|
99
|
+
data-title="Valley town">
|
100
|
+
</a>
|
101
|
+
</div>
|
102
|
+
|
103
|
+
|
104
|
+
</div>
|
105
|
+
<script>
|
106
|
+
$(function() {
|
107
|
+
// Load the Miniml theme
|
108
|
+
Galleria.loadTheme('galleria.miniml.js');
|
109
|
+
|
110
|
+
// Initialize Galleria
|
111
|
+
Galleria.run('.galleria');
|
112
|
+
});
|
113
|
+
</script>
|
114
|
+
</body>
|
115
|
+
</html>
|
@@ -0,0 +1,115 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=0.5,user-scalable=no">
|
6
|
+
<title>Galleria Miniml Theme</title>
|
7
|
+
<style>
|
8
|
+
|
9
|
+
/* Demo styles */
|
10
|
+
|
11
|
+
html,body{background:#eee;margin:0;}
|
12
|
+
.content{color:#777;font:12px/1.4 "helvetica neue",arial,sans-serif;margin:20px auto;max-width:820px}
|
13
|
+
h1{font-size:12px;font-weight:normal;color:#222;margin:0;}
|
14
|
+
p{margin:0 0 20px}
|
15
|
+
a {color:#22BCB9;text-decoration:none;}
|
16
|
+
.galleria-info-description a {color: #bbb;}
|
17
|
+
.cred{margin-top:20px;font-size:11px;}
|
18
|
+
|
19
|
+
/* Gallery measures that will be applied */
|
20
|
+
.galleria {
|
21
|
+
height:420px; /* defines a static gallery height */
|
22
|
+
max-width:820px; /* defines a responsive width */
|
23
|
+
}
|
24
|
+
|
25
|
+
</style>
|
26
|
+
|
27
|
+
<!-- load jQuery -->
|
28
|
+
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.js"></script> -->
|
29
|
+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.js"></script>
|
30
|
+
|
31
|
+
<!-- load Galleria -->
|
32
|
+
<script src="../../galleria.js"></script>
|
33
|
+
|
34
|
+
</head>
|
35
|
+
<body>
|
36
|
+
<div class="content">
|
37
|
+
<h1>Galleria Miniml Theme</h1>
|
38
|
+
<p>Demonstrating a basic gallery example.</p>
|
39
|
+
|
40
|
+
<div class="galleria">
|
41
|
+
<a href="https://picsum.photos/id/389/1024/768.jpg">
|
42
|
+
<img src="https://picsum.photos/id/389/150/100.jpg"
|
43
|
+
data-big="https://picsum.photos/id/389/1440/1080.jpg"
|
44
|
+
data-description="by <a href="https://unsplash.com/photos/bt-Sc22W-BE">Jake Hills</a> on <a href="https://unsplash.com">Unsplash</a>"
|
45
|
+
data-title="Footsteps">
|
46
|
+
</a>
|
47
|
+
<a href="https://picsum.photos/id/675/1024/768.jpg">
|
48
|
+
<img src="https://picsum.photos/id/675/150/100.jpg"
|
49
|
+
data-big="https://picsum.photos/id/675/1440/1080.jpg"
|
50
|
+
data-description="by <a href="https://unsplash.com/photos/hBYzBU1xP6s">Barn Images</a> on <a href="https://unsplash.com">Unsplash</a>"
|
51
|
+
data-title="Waves washes on beach shore">
|
52
|
+
</a>
|
53
|
+
<a href="https://picsum.photos/id/525/1024/768.jpg">
|
54
|
+
<img src="https://picsum.photos/id/525/150/100.jpg"
|
55
|
+
data-big="https://picsum.photos/id/525/1440/1080.jpg"
|
56
|
+
data-description="by <a href="https://unsplash.com/photos/aViOQZzikVs">Luca Zanon</a> on <a href="https://unsplash.com">Unsplash</a>"
|
57
|
+
data-title="Extreme Desert Hike">
|
58
|
+
</a>
|
59
|
+
<a href="https://picsum.photos/id/349/1024/768.jpg">
|
60
|
+
<img src="https://picsum.photos/id/349/150/100.jpg"
|
61
|
+
data-big="https://picsum.photos/id/349/1440/1080.jpg"
|
62
|
+
data-description="by <a href="https://unsplash.com/photos/FmMivfgHCiM">Caleb George</a> on <a href="https://unsplash.com">Unsplash</a>"
|
63
|
+
data-title="Man in front of skyline">
|
64
|
+
</a>
|
65
|
+
<a href="https://picsum.photos/id/120/1024/768.jpg">
|
66
|
+
<img src="https://picsum.photos/id/120/150/100.jpg"
|
67
|
+
data-big="https://picsum.photos/id/120/1440/1080.jpg"
|
68
|
+
data-description="by <a href="https://unsplash.com/photos/_DA3D5P71qs">Guillaume</a> on <a href="https://unsplash.com">Unsplash</a>"
|
69
|
+
data-title="Milky Way Night Sky">
|
70
|
+
</a>
|
71
|
+
<a href="https://picsum.photos/id/299/1024/768.jpg">
|
72
|
+
<img src="https://picsum.photos/id/299/150/100.jpg"
|
73
|
+
data-big="https://picsum.photos/id/299/1440/1080.jpg"
|
74
|
+
data-description="by <a href="https://unsplash.com/photos/nOhUx3tiaQQ">Matthew Wiebe</a> on <a href="https://unsplash.com">Unsplash</a>"
|
75
|
+
data-title="My favorite building in the city">
|
76
|
+
</a>
|
77
|
+
<a href="https://picsum.photos/id/219/1024/768.jpg">
|
78
|
+
<img src="https://picsum.photos/id/219/150/100.jpg"
|
79
|
+
data-big="https://picsum.photos/id/219/1440/1080.jpg"
|
80
|
+
data-description="by <a href="https://unsplash.com/photos/7iB4OZDlRok">Martyn Seddon</a> on <a href="https://unsplash.com">Unsplash</a>"
|
81
|
+
data-title="Encounter with a leopard">
|
82
|
+
</a>
|
83
|
+
<a href="https://picsum.photos/id/856/1024/768.jpg">
|
84
|
+
<img src="https://picsum.photos/id/856/150/100.jpg"
|
85
|
+
data-big="https://picsum.photos/id/856/1440/1080.jpg"
|
86
|
+
data-description="by <a href="https://unsplash.com/photos/omKdUQ9R3Zo">Olu Eletu</a> on <a href="https://unsplash.com">Unsplash</a>"
|
87
|
+
data-title="Elegant man with hot coffee">
|
88
|
+
</a>
|
89
|
+
<a href="https://picsum.photos/id/531/1024/768.jpg">
|
90
|
+
<img src="https://picsum.photos/id/531/150/100.jpg"
|
91
|
+
data-big="https://picsum.photos/id/531/1440/1080.jpg"
|
92
|
+
data-description="by <a href="https://unsplash.com/photos/zr8msYQhfRg">Jeff Sheldon</a> on <a href="https://unsplash.com">Unsplash</a>"
|
93
|
+
data-title="Vintage cameras">
|
94
|
+
</a>
|
95
|
+
<a href="https://picsum.photos/id/426/1024/768.jpg">
|
96
|
+
<img src="https://picsum.photos/id/426/150/100.jpg"
|
97
|
+
data-big="https://picsum.photos/id/426/1440/1080.jpg"
|
98
|
+
data-description="by <a href="https://unsplash.com/photos/01ZeHnK3F_4">Ales Krivec</a> on <a href="https://unsplash.com">Unsplash</a>"
|
99
|
+
data-title="Valley town">
|
100
|
+
</a>
|
101
|
+
</div>
|
102
|
+
|
103
|
+
|
104
|
+
</div>
|
105
|
+
<script>
|
106
|
+
$(function() {
|
107
|
+
// Load the Miniml theme
|
108
|
+
Galleria.loadTheme('galleria.miniml.js');
|
109
|
+
|
110
|
+
// Initialize Galleria
|
111
|
+
Galleria.run('.galleria');
|
112
|
+
});
|
113
|
+
</script>
|
114
|
+
</body>
|
115
|
+
</html>
|