Photoset grid
Strona wtyczki
Oficjalna witryna wtyczki
Zobacz więcej
Photoset grid
Strona wtyczki: | Strona wtyczki |
Instalacja
- HTML
- JS
<div class="photoset-grid-custom" style="visibility: hidden;">
<img src="/print1-500px.jpg" data-highres="/print1-highres.jpg">
<img src="/print2-500px.jpg" data-highres="/print2-highres.jpg">
<img src="/print3-500px.jpg" data-highres="/print3-highres.jpg">
</div>
$('.photoset-grid-custom').photosetGrid({
// Set the gutter between columns and rows
gutter: '5px',
// Manually set the grid layout
layout: '21',
// Wrap the images in links
highresLinks: true,
// Asign a common rel attribute
rel: 'print-gallery',
onInit: function(){},
onComplete: function(){
// Show the grid after it renders
$('.photoset-grid-custom').attr('style', '');
}
});