/*!
* baguetteBox.js
* @author feimosi
* @version 1.3.2
* @url https://github.com/feimosi/baguetteBox.js
*/
var baguetteBox = (function() {
// SVG shapes used within the buttons
var leftArrow = '',
rightArrow = '',
closeX = '';
// Global options and their defaults
var options = {}, defaults = {
captions: true,
buttons: 'auto',
async: false,
preload: 2,
animation: 'slideIn',
afterShow: null,
afterHide: null,
// callback when image changes with `currentIndex` and `imagesElements.length` as parameters
onChange: null
};
// Object containing information about features compatibility
var supports = {};
// DOM Elements references
var overlay, slider, previousButton, nextButton, closeButton;
// Current image index inside the slider and displayed gallery index
var currentIndex = 0, currentGallery = -1;
// Touch event start position (for slide gesture)
var touchStartX;
// If set to true ignore touch events because animation was already fired
var touchFlag = false;
// Regex pattern to match image files
var regex = /.+\.(gif|jpe?g|png|webp)/i;
// Array of all used galleries (DOM elements)
var galleries = [];
// 2D array of galleries and images inside them
var imagesMap = [];
// Array containing temporary images DOM elements
var imagesElements = [];
// forEach polyfill for IE8
// http://stackoverflow.com/a/14827443/1077846
if(![].forEach) {
Array.prototype.forEach = function(callback, thisArg) {
for(var i = 0; i < this.length; i++)
callback.call(thisArg, this[i], i, this);
};
}
// filter polyfill for IE8
// https://gist.github.com/eliperelman/1031656
if(![].filter) {
Array.prototype.filter = function(a, b, c, d, e) {
/*jshint -W030 */
c=this;d=[];for(e=0;e 40) {
touchFlag = true;
showPreviousImage();
} else if (touch.pageX - touchStartX < -40) {
touchFlag = true;
showNextImage();
}
});
bind(overlay, 'touchend', function(event) {
touchFlag = false;
});
// Activate keyboard shortcuts
bind(document, 'keydown', function(event) {
switch(event.keyCode) {
case 37: // Left arrow
showPreviousImage();
break;
case 39: // Right arrow
showNextImage();
break;
case 27: // Esc
hideOverlay();
break;
}
});
}
function prepareOverlay(galleryIndex) {
// If the same gallery is being opened prevent from loading it once again
if(currentGallery === galleryIndex)
return;
currentGallery = galleryIndex;
// Update gallery specific options
setOptions(imagesMap[galleryIndex].options);
// Empty slider of previous contents (more effective than .innerHTML = "")
while(slider.firstChild)
slider.removeChild(slider.firstChild);
imagesElements.length = 0;
// Prepare and append images containers
for(var i = 0, fullImage; i < imagesMap[galleryIndex].length; i++) {
fullImage = create('div');
fullImage.className = 'full-image';
fullImage.id = 'baguette-img-' + i;
imagesElements.push(fullImage);
slider.appendChild(imagesElements[i]);
}
}
function setOptions(newOptions) {
if(!newOptions)
newOptions = {};
// Fill options object
for(var item in defaults) {
options[item] = defaults[item];
if(typeof newOptions[item] !== 'undefined')
options[item] = newOptions[item];
}
/* Apply new options */
// Change transition for proper animation
slider.style.transition = slider.style.webkitTransition = (options.animation === 'fadeIn' ? 'opacity .4s ease' :
options.animation === 'slideIn' ? '' : 'none');
// Hide buttons if necessary
if(options.buttons === 'auto' && ('ontouchstart' in window || imagesMap[currentGallery].length === 1))
options.buttons = false;
// Set buttons style to hide or display them
previousButton.style.display = nextButton.style.display = (options.buttons ? '' : 'none');
}
function showOverlay(index) {
// Return if overlay is already visible
if(overlay.style.display === 'block')
return;
// Set current index to a new value and load proper image
currentIndex = index;
loadImage(currentIndex, function() {
preloadNext(currentIndex);
preloadPrev(currentIndex);
});
updateOffset();
overlay.style.display = 'block';
// Fade in overlay
setTimeout(function() {
overlay.className = 'visible';
if(options.afterShow)
options.afterShow();
}, 50);
if(options.onChange)
options.onChange(currentIndex, imagesElements.length);
}
function hideOverlay() {
// Return if overlay is already hidden
if(overlay.style.display === 'none')
return;
// Fade out and hide the overlay
overlay.className = '';
setTimeout(function() {
overlay.style.display = 'none';
if(options.afterHide)
options.afterHide();
}, 500);
}
function loadImage(index, callback) {
var imageContainer = imagesElements[index];
// If index is invalid return
if(typeof imageContainer === 'undefined')
return;
// If image is already loaded run callback and return
if(imageContainer.getElementsByTagName('img')[0]) {
if(callback)
callback();
return;
}
// Get element reference, optional caption and source path
imageElement = imagesMap[currentGallery][index];
imageCaption = (typeof(options.captions) === 'function') ?
options.captions.call(imagesMap[currentGallery], imageElement) :
imageElement.getAttribute('data-caption') || imageElement.title;
imageSrc = getImageSrc(imageElement);
// Prepare image container elements
var figure = create('figure');
var image = create('img');
var figcaption = create('figcaption');
imageContainer.appendChild(figure);
// Add loader element
figure.innerHTML = '';
// Set callback function when image loads
image.onload = function() {
// Remove loader element
var spinner = document.querySelector('#baguette-img-' + index + ' .spinner');
figure.removeChild(spinner);
if(!options.async && callback)
callback();
};
image.setAttribute('src', imageSrc);
figure.appendChild(image);
// Insert caption if available
if(options.captions && imageCaption) {
figcaption.innerHTML = imageCaption;
figure.appendChild(figcaption);
}
// Run callback
if(options.async && callback)
callback();
}
// Get image source location, mostly used for responsive images
function getImageSrc(image) {
// Set default image path from href
var result = imageElement.href;
// If dataset is supported find the most suitable image
if(image.dataset) {
var srcs = [];
// Get all possible image versions depending on the resolution
for(var item in image.dataset) {
if(item.substring(0, 3) === 'at-' && !isNaN(item.substring(3)))
srcs[item.replace('at-', '')] = image.dataset[item];
}
// Sort resolutions ascending
keys = Object.keys(srcs).sort(function(a, b) {
return parseInt(a) < parseInt(b) ? -1 : 1;
});
// Get real screen resolution
var width = window.innerWidth * window.devicePixelRatio;
// Find the first image bigger than or equal to the current width
var i = 0;
while(i < keys.length - 1 && keys[i] < width)
i++;
result = srcs[keys[i]] || result;
}
return result;
}
// Return false at the right end of the gallery
function showNextImage() {
var returnValue;
// Check if next image exists
if(currentIndex <= imagesElements.length - 2) {
currentIndex++;
updateOffset();
preloadNext(currentIndex);
returnValue = true;
} else if(options.animation) {
slider.className = 'bounce-from-right';
setTimeout(function() {
slider.className = '';
}, 400);
returnValue = false;
}
if(options.onChange)
options.onChange(currentIndex, imagesElements.length);
return returnValue;
}
// Return false at the left end of the gallery
function showPreviousImage() {
var returnValue;
// Check if previous image exists
if(currentIndex >= 1) {
currentIndex--;
updateOffset();
preloadPrev(currentIndex);
returnValue = true;
} else if(options.animation) {
slider.className = 'bounce-from-left';
setTimeout(function() {
slider.className = '';
}, 400);
returnValue = false;
}
if(options.onChange)
options.onChange(currentIndex, imagesElements.length);
return returnValue;
}
function updateOffset() {
var offset = -currentIndex * 100 + '%';
if(options.animation === 'fadeIn') {
slider.style.opacity = 0;
setTimeout(function() {
/*jshint -W030 */
supports.transforms ?
slider.style.transform = slider.style.webkitTransform = 'translate3d(' + offset + ',0,0)'
: slider.style.left = offset;
slider.style.opacity = 1;
}, 400);
} else {
/*jshint -W030 */
supports.transforms ?
slider.style.transform = slider.style.webkitTransform = 'translate3d(' + offset + ',0,0)'
: slider.style.left = offset;
}
}
// CSS 3D Transforms test
function testTransformsSupport() {
var div = create('div');
return typeof div.style.perspective !== 'undefined' || typeof div.style.webkitPerspective !== 'undefined';
}
// Inline SVG test
function testSVGSupport() {
var div = create('div');
div.innerHTML = '';
return (div.firstChild && div.firstChild.namespaceURI) == 'http://www.w3.org/2000/svg';
}
function preloadNext(index) {
if(index - currentIndex >= options.preload)
return;
loadImage(index + 1, function() { preloadNext(index + 1); });
}
function preloadPrev(index) {
if(currentIndex - index >= options.preload)
return;
loadImage(index - 1, function() { preloadPrev(index - 1); });
}
function bind(element, event, callback) {
if(element.addEventListener)
element.addEventListener(event, callback, false);
else // IE8 fallback
element.attachEvent('on' + event, callback);
}
function getByID(id) {
return document.getElementById(id);
}
function create(element) {
return document.createElement(element);
}
return {
run: run,
showNext: showNextImage,
showPrevious: showPreviousImage
};
})();