simplelightbox
Advanced tools
Comparing version
{ | ||
"name": "simplelightbox", | ||
"version": "1.14.0", | ||
"version": "1.15.0", | ||
"homepage": "http://andreknieriem.de/simple-lightbox", | ||
@@ -5,0 +5,0 @@ "authors": [ |
/* | ||
By André Rinas, www.andrerinas.de | ||
Available for use under the MIT License | ||
1.14.0 | ||
1.15.0 | ||
*/ | ||
@@ -101,3 +101,3 @@ ;( function( $, window, document, undefined ) | ||
newHash = 'pid='+(index+1); | ||
var newURL = winLoc.href.split('#')[0] + '#' + newHash; | ||
var newURL = winLoc.href.split('#')[0] + '#' + newHash; | ||
@@ -117,3 +117,3 @@ if(supportsPushState){ | ||
if (supportsPushState) { | ||
history.pushState('', document.title, winLoc.pathname + winLoc.search ); | ||
history.pushState('', document.title, winLoc.pathname + winLoc.search ); | ||
} else { | ||
@@ -204,4 +204,4 @@ winLoc.hash = ''; | ||
var tmpImage = new Image(), | ||
windowWidth = $( window ).width() * options.widthRatio, | ||
windowHeight = $( window ).height() * options.heightRatio; | ||
windowWidth = window.innerWidth * options.widthRatio, | ||
windowHeight = window.innerHeight * options.heightRatio; | ||
tmpImage.src = curImg.attr( 'src' ); | ||
@@ -252,4 +252,4 @@ | ||
$('.sl-image').css({ | ||
'top': ( $( window ).height() - imageHeight ) / 2 + 'px', | ||
'left': ( $( window ).width() - imageWidth - globalScrollbarwidth)/ 2 + 'px' | ||
'top': ( window.innerHeight - imageHeight ) / 2 + 'px', | ||
'left': ( window.innerWidth - imageWidth - globalScrollbarwidth)/ 2 + 'px' | ||
}); | ||
@@ -310,3 +310,3 @@ spinner.hide(); | ||
if(captiontext !== '' && typeof captiontext !== "undefined" && options.captions){ | ||
caption.html(captiontext).css({'width': imageWidth + 'px'}).hide().appendTo($('.sl-image')).delay(options.captionDelay).fadeIn('fast'); | ||
caption.html(captiontext).css({'width': imageWidth + 'px'}).hide().appendTo($('.sl-image')).delay(options.captionDelay).fadeIn('fast'); | ||
} | ||
@@ -379,4 +379,4 @@ }, | ||
if( options.animationSlide ) { | ||
if( canTransisions ) slide( 0, -swipeDiff + 'px' ); | ||
else image.css( 'left', imageLeft - swipeDiff + 'px' ); | ||
if( canTransisions ) slide( 0, -swipeDiff + 'px' ); | ||
else image.css( 'left', imageLeft - swipeDiff + 'px' ); | ||
} | ||
@@ -440,6 +440,6 @@ }) | ||
$('.sl-wrapper .sl-counter .sl-current').text(index +1); | ||
var css = { 'opacity': 0 }; | ||
var css = { 'opacity': 0 }; | ||
if( options.animationSlide ) { | ||
if( canTransisions ) slide(options.animationSpeed / 1000, ( -100 * dir ) - swipeDiff + 'px'); | ||
else css.left = parseInt( $('.sl-image').css( 'left' ) ) + -100 * dir + 'px'; | ||
if( canTransisions ) slide(options.animationSpeed / 1000, ( -100 * dir ) - swipeDiff + 'px'); | ||
else css.left = parseInt( $('.sl-image').css( 'left' ) ) + -100 * dir + 'px'; | ||
} | ||
@@ -478,5 +478,5 @@ | ||
}); | ||
curImg = $(); | ||
opened = false; | ||
animating = false; | ||
curImg = $(); | ||
opened = false; | ||
animating = false; | ||
}, | ||
@@ -543,5 +543,11 @@ handleScrollbar = function(type){ | ||
// keyboard control only if lightbox is open | ||
var key = e.keyCode; | ||
if(animating && key == 27) { | ||
curImg.attr('src', ''); | ||
animating = false; | ||
close(); | ||
} | ||
if(opened){ | ||
e.preventDefault(); | ||
var key = e.keyCode; | ||
if( key == 27 ) { | ||
@@ -548,0 +554,0 @@ close(); |
/* | ||
By André Rinas, www.andrerinas.de | ||
Available for use under the MIT License | ||
1.14.0 | ||
1.15.0 | ||
*/ | ||
!function(N,Y,j,t){"use strict";N.fn.simpleLightbox=function(p){p=N.extend({sourceAttr:"href",overlay:!0,spinner:!0,nav:!0,navText:["‹","›"],captions:!0,captionDelay:0,captionSelector:"img",captionType:"attr",captionsData:"title",captionPosition:"bottom",captionClass:"",close:!0,closeText:"×",swipeClose:!0,showCounter:!0,fileExt:"png|jpg|jpeg|gif",animationSlide:!0,animationSpeed:250,preloading:!0,enableKeyboard:!0,loop:!0,rel:!1,docClose:!0,swipeTolerance:50,className:"simple-lightbox",widthRatio:.8,heightRatio:.9,scaleImageToRatio:!1,disableRightClick:!1,disableScroll:!0,alertError:!0,alertErrorMessage:"Image not found, next image will be loaded",additionalHtml:!1,history:!0,throttleInterval:0},p),Y.navigator.pointerEnabled||Y.navigator.msPointerEnabled;var d,t,r=0,l=0,h=N(),n=function(){var t=j.body||j.documentElement;return""===(t=t.style).WebkitTransition?"-webkit-":""===t.MozTransition?"-moz-":""===t.OTransition?"-o-":""===t.transition&&""},g=!1,u=[],f=p.rel&&!1!==p.rel?(t=p.rel,N(this).filter(function(){return N(this).attr("rel")===t})):this,m=(n=n(),0),v=!1!==n,i="pushState"in history,x=!1,a=Y.location,c=function(){return a.hash.substring(1)},b=c(),y=function(){c();var t="pid="+(I+1),e=a.href.split("#")[0]+"#"+t;i?history[x?"replaceState":"pushState"]("",j.title,e):x?a.replace(e):a.hash=t,x=!0},w=function(e,i){var n;return function(){var t=arguments;n||(e.apply(this,t),n=!0,setTimeout(function(){return n=!1},i))}},T="simplelb",e=N("<div>").addClass("sl-overlay"),o=N("<button>").addClass("sl-close").html(p.closeText),E=N("<div>").addClass("sl-spinner").html("<div></div>"),C=N("<div>").addClass("sl-navigation").html('<button class="sl-prev">'+p.navText[0]+'</button><button class="sl-next">'+p.navText[1]+"</button>"),s=N("<div>").addClass("sl-counter").html('<span class="sl-current"></span>/<span class="sl-total"></span>'),S=!1,I=0,k=N("<div>").addClass("sl-caption "+p.captionClass+" pos-"+p.captionPosition),q=N("<div>").addClass("sl-image"),D=N("<div>").addClass("sl-wrapper").addClass(p.className),M=function(t){t.trigger(N.Event("show.simplelightbox")),p.disableScroll&&(m=X("hide")),D.appendTo("body"),q.appendTo(D),p.overlay&&e.appendTo(N("body")),S=!0,I=f.index(t),h=N("<img/>").hide().attr("src",t.attr(p.sourceAttr)),-1==u.indexOf(t.attr(p.sourceAttr))&&u.push(t.attr(p.sourceAttr)),q.html("").attr("style",""),h.appendTo(q),P(),e.fadeIn("fast"),N(".sl-close").fadeIn("fast"),E.show(),C.fadeIn("fast"),N(".sl-wrapper .sl-counter .sl-current").text(I+1),s.fadeIn("fast"),R(),p.preloading&&z(),setTimeout(function(){t.trigger(N.Event("shown.simplelightbox"))},p.animationSpeed)},R=function(s){if(h.length){var r=new Image,l=N(Y).width()*p.widthRatio,c=N(Y).height()*p.heightRatio;r.src=h.attr("src"),N(r).on("error",function(t){f.eq(I).trigger(N.Event("error.simplelightbox")),g=!(S=!1),E.hide(),p.alertError&&alert(p.alertErrorMessage),L(1==s||-1==s?s:1)}),r.onload=function(){void 0!==s&&f.eq(I).trigger(N.Event("changed.simplelightbox")).trigger(N.Event((1===s?"nextDone":"prevDone")+".simplelightbox")),p.history&&(x?d=setTimeout(y,800):y()),-1==u.indexOf(h.attr("src"))&&u.push(h.attr("src"));var t=r.width,e=r.height;if(p.scaleImageToRatio||l<t||c<e){var i=l/c<t/e?t/l:e/c;t/=i,e/=i}N(".sl-image").css({top:(N(Y).height()-e)/2+"px",left:(N(Y).width()-t-m)/2+"px"}),E.hide(),h.css({width:t+"px",height:e+"px"}).fadeIn("fast"),g=!0;var n,a="self"==p.captionSelector?f.eq(I):f.eq(I).find(p.captionSelector);if(n="data"==p.captionType?a.data(p.captionsData):"text"==p.captionType?a.html():a.prop(p.captionsData),p.loop||(0===I&&N(".sl-prev").hide(),I>=f.length-1&&N(".sl-next").hide(),0<I&&N(".sl-prev").show(),I<f.length-1&&N(".sl-next").show()),1==f.length&&N(".sl-prev, .sl-next").hide(),1==s||-1==s){var o={opacity:1};p.animationSlide&&(v?(O(0,100*s+"px"),setTimeout(function(){O(p.animationSpeed/1e3,"0px")},50)):o.left=parseInt(N(".sl-image").css("left"))+100*s+"px"),N(".sl-image").animate(o,p.animationSpeed,function(){S=!1,A(n,t)})}else S=!1,A(n,t);p.additionalHtml&&0===N(".sl-additional-html").length&&N("<div>").html(p.additionalHtml).addClass("sl-additional-html").appendTo(N(".sl-image"))}}},A=function(t,e){""!==t&&void 0!==t&&p.captions&&k.html(t).css({width:e+"px"}).hide().appendTo(N(".sl-image")).delay(p.captionDelay).fadeIn("fast")},O=function(t,e){var i={};i[n+"transform"]="translateX("+e+")",i[n+"transition"]=n+"transform "+t+"s linear",N(".sl-image").css(i)},P=function(){N(Y).on("resize."+T,R),N(j).on("click."+T+" touchstart."+T,".sl-close",function(t){t.preventDefault(),g&&W()}),p.history&&setTimeout(function(){N(Y).on("hashchange."+T,function(){g&&c()===b&&W()})},40),C.on("click."+T,"button",w(function(t){t.preventDefault(),r=0,L(N(this).hasClass("sl-next")?1:-1)},p.throttleInterval));var e=0,i=0,n=0,a=0,o=!1,s=0;q.on("touchstart."+T+" mousedown."+T,function(t){return!!o||(v&&(s=parseInt(q.css("left"))),o=!0,l=r=0,e=t.originalEvent.pageX||t.originalEvent.touches[0].pageX,n=t.originalEvent.pageY||t.originalEvent.touches[0].pageY,!1)}).on("touchmove."+T+" mousemove."+T+" pointermove MSPointerMove",function(t){if(!o)return!0;t.preventDefault(),i=t.originalEvent.pageX||t.originalEvent.touches[0].pageX,a=t.originalEvent.pageY||t.originalEvent.touches[0].pageY,r=e-i,l=n-a,p.animationSlide&&(v?O(0,-r+"px"):q.css("left",s-r+"px"))}).on("touchend."+T+" mouseup."+T+" touchcancel."+T+" mouseleave."+T+" pointerup pointercancel MSPointerUp MSPointerCancel",function(t){if(o){var e=!(o=!1);p.loop||(0===I&&r<0&&(e=!1),I>=f.length-1&&0<r&&(e=!1)),Math.abs(r)>p.swipeTolerance&&e?L(0<r?1:-1):p.animationSlide&&(v?O(p.animationSpeed/1e3,"0px"):q.animate({left:s+"px"},p.animationSpeed/2)),p.swipeClose&&50<Math.abs(l)&&Math.abs(r)<p.swipeTolerance&&W()}})},z=function(){var t=I+1<0?f.length-1:I+1>=f.length-1?0:I+1,e=I-1<0?f.length-1:I-1>=f.length-1?0:I-1;N("<img />").attr("src",f.eq(t).attr(p.sourceAttr)).on("load",function(){-1==u.indexOf(N(this).attr("src"))&&u.push(N(this).attr("src")),f.eq(I).trigger(N.Event("nextImageLoaded.simplelightbox"))}),N("<img />").attr("src",f.eq(e).attr(p.sourceAttr)).on("load",function(){-1==u.indexOf(N(this).attr("src"))&&u.push(N(this).attr("src")),f.eq(I).trigger(N.Event("prevImageLoaded.simplelightbox"))})},L=function(e){f.eq(I).trigger(N.Event("change.simplelightbox")).trigger(N.Event((1===e?"next":"prev")+".simplelightbox"));var t=I+e;if(!(S||(t<0||t>=f.length)&&!1===p.loop)){I=t<0?f.length-1:t>f.length-1?0:t,N(".sl-wrapper .sl-counter .sl-current").text(I+1);var i={opacity:0};p.animationSlide&&(v?O(p.animationSpeed/1e3,-100*e-r+"px"):i.left=parseInt(N(".sl-image").css("left"))+-100*e+"px"),N(".sl-image").animate(i,p.animationSpeed,function(){setTimeout(function(){var t=f.eq(I);h.attr("src",t.attr(p.sourceAttr)),-1==u.indexOf(t.attr(p.sourceAttr))&&E.show(),N(".sl-caption").remove(),R(e),p.preloading&&z()},100)})}},W=function(){if(!S){var t=f.eq(I),e=!1;t.trigger(N.Event("close.simplelightbox")),p.history&&(i?history.pushState("",j.title,a.pathname+a.search):a.hash="",clearTimeout(d)),N(".sl-image img, .sl-overlay, .sl-close, .sl-navigation, .sl-image .sl-caption, .sl-counter").fadeOut("fast",function(){p.disableScroll&&X("show"),N(".sl-wrapper, .sl-overlay").remove(),C.off("click","button"),N(j).off("click."+T,".sl-close"),N(Y).off("resize."+T),N(Y).off("hashchange."+T),e||t.trigger(N.Event("closed.simplelightbox")),e=!0}),h=N(),S=g=!1}},X=function(t){var e=0;if("hide"==t){var i=Y.innerWidth;if(!i){var n=j.documentElement.getBoundingClientRect();i=n.right-Math.abs(n.left)}if(j.body.clientWidth<i){var a=j.createElement("div"),o=parseInt(N("body").css("padding-right"),10);a.className="sl-scrollbar-measure",N("body").append(a),e=a.offsetWidth-a.clientWidth,N(j.body)[0].removeChild(a),N("body").data("padding",o),0<e&&N("body").addClass("hidden-scroll").css({"padding-right":o+e})}}else N("body").removeClass("hidden-scroll").css({"padding-right":N("body").data("padding")});return e};return p.close&&o.appendTo(D),p.showCounter&&1<f.length&&(s.appendTo(D),s.find(".sl-total").text(f.length)),p.nav&&C.appendTo(D),p.spinner&&E.appendTo(D),f.on("click."+T,function(t){if(function(t){if(!p.fileExt)return!0;var e=N(t).attr(p.sourceAttr).match(/\.([0-9a-z]+)(?=[?#])|(\.)(?:[\w]+)$/gim);return e&&"a"==N(t).prop("tagName").toLowerCase()&&new RegExp(".("+p.fileExt+")$","i").test(e)}(this)){if(t.preventDefault(),S)return!1;M(N(this))}}),N(j).on("click."+T+" touchstart."+T,function(t){g&&p.docClose&&0===N(t.target).closest(".sl-image").length&&0===N(t.target).closest(".sl-navigation").length&&W()}),p.disableRightClick&&N(j).on("contextmenu",".sl-image img",function(t){return!1}),p.enableKeyboard&&N(j).on("keyup."+T,w(function(t){if(r=0,g){t.preventDefault();var e=t.keyCode;27==e&&W(),37!=e&&39!=t.keyCode||L(39==t.keyCode?1:-1)}},p.throttleInterval)),this.open=function(t){t=t||N(this[0]),M(t)},this.next=function(){L(1)},this.prev=function(){L(-1)},this.close=function(){W()},this.destroy=function(){N(j).off("click."+T).off("keyup."+T),W(),N(".sl-overlay, .sl-wrapper").remove(),this.off("click")},this.refresh=function(){this.destroy(),N(this).simpleLightbox(p)},this}}(jQuery,window,document); | ||
!function(X,N,Y,t){"use strict";X.fn.simpleLightbox=function(p){p=X.extend({sourceAttr:"href",overlay:!0,spinner:!0,nav:!0,navText:["‹","›"],captions:!0,captionDelay:0,captionSelector:"img",captionType:"attr",captionsData:"title",captionPosition:"bottom",captionClass:"",close:!0,closeText:"×",swipeClose:!0,showCounter:!0,fileExt:"png|jpg|jpeg|gif",animationSlide:!0,animationSpeed:250,preloading:!0,enableKeyboard:!0,loop:!0,rel:!1,docClose:!0,swipeTolerance:50,className:"simple-lightbox",widthRatio:.8,heightRatio:.9,scaleImageToRatio:!1,disableRightClick:!1,disableScroll:!0,alertError:!0,alertErrorMessage:"Image not found, next image will be loaded",additionalHtml:!1,history:!0,throttleInterval:0},p),N.navigator.pointerEnabled||N.navigator.msPointerEnabled;var d,t,r=0,l=0,h=X(),i=function(){var t=Y.body||Y.documentElement;return""===(t=t.style).WebkitTransition?"-webkit-":""===t.MozTransition?"-moz-":""===t.OTransition?"-o-":""===t.transition&&""},g=!1,u=[],f=p.rel&&!1!==p.rel?(t=p.rel,X(this).filter(function(){return X(this).attr("rel")===t})):this,m=(i=i(),0),v=!1!==i,n="pushState"in history,x=!1,a=N.location,c=function(){return a.hash.substring(1)},b=c(),y=function(){c();var t="pid="+(I+1),e=a.href.split("#")[0]+"#"+t;n?history[x?"replaceState":"pushState"]("",Y.title,e):x?a.replace(e):a.hash=t,x=!0},w=function(e,n){var i;return function(){var t=arguments;i||(e.apply(this,t),i=!0,setTimeout(function(){return i=!1},n))}},T="simplelb",e=X("<div>").addClass("sl-overlay"),o=X("<button>").addClass("sl-close").html(p.closeText),E=X("<div>").addClass("sl-spinner").html("<div></div>"),C=X("<div>").addClass("sl-navigation").html('<button class="sl-prev">'+p.navText[0]+'</button><button class="sl-next">'+p.navText[1]+"</button>"),s=X("<div>").addClass("sl-counter").html('<span class="sl-current"></span>/<span class="sl-total"></span>'),S=!1,I=0,k=X("<div>").addClass("sl-caption "+p.captionClass+" pos-"+p.captionPosition),q=X("<div>").addClass("sl-image"),D=X("<div>").addClass("sl-wrapper").addClass(p.className),M=function(t){t.trigger(X.Event("show.simplelightbox")),p.disableScroll&&(m=L("hide")),D.appendTo("body"),q.appendTo(D),p.overlay&&e.appendTo(X("body")),S=!0,I=f.index(t),h=X("<img/>").hide().attr("src",t.attr(p.sourceAttr)),-1==u.indexOf(t.attr(p.sourceAttr))&&u.push(t.attr(p.sourceAttr)),q.html("").attr("style",""),h.appendTo(q),W(),e.fadeIn("fast"),X(".sl-close").fadeIn("fast"),E.show(),C.fadeIn("fast"),X(".sl-wrapper .sl-counter .sl-current").text(I+1),s.fadeIn("fast"),R(),p.preloading&&P(),setTimeout(function(){t.trigger(X.Event("shown.simplelightbox"))},p.animationSpeed)},R=function(s){if(h.length){var r=new Image,l=N.innerWidth*p.widthRatio,c=N.innerHeight*p.heightRatio;r.src=h.attr("src"),X(r).on("error",function(t){f.eq(I).trigger(X.Event("error.simplelightbox")),g=!(S=!1),E.hide(),p.alertError&&alert(p.alertErrorMessage),z(1==s||-1==s?s:1)}),r.onload=function(){void 0!==s&&f.eq(I).trigger(X.Event("changed.simplelightbox")).trigger(X.Event((1===s?"nextDone":"prevDone")+".simplelightbox")),p.history&&(x?d=setTimeout(y,800):y()),-1==u.indexOf(h.attr("src"))&&u.push(h.attr("src"));var t=r.width,e=r.height;if(p.scaleImageToRatio||l<t||c<e){var n=l/c<t/e?t/l:e/c;t/=n,e/=n}X(".sl-image").css({top:(N.innerHeight-e)/2+"px",left:(N.innerWidth-t-m)/2+"px"}),E.hide(),h.css({width:t+"px",height:e+"px"}).fadeIn("fast"),g=!0;var i,a="self"==p.captionSelector?f.eq(I):f.eq(I).find(p.captionSelector);if(i="data"==p.captionType?a.data(p.captionsData):"text"==p.captionType?a.html():a.prop(p.captionsData),p.loop||(0===I&&X(".sl-prev").hide(),I>=f.length-1&&X(".sl-next").hide(),0<I&&X(".sl-prev").show(),I<f.length-1&&X(".sl-next").show()),1==f.length&&X(".sl-prev, .sl-next").hide(),1==s||-1==s){var o={opacity:1};p.animationSlide&&(v?(O(0,100*s+"px"),setTimeout(function(){O(p.animationSpeed/1e3,"0px")},50)):o.left=parseInt(X(".sl-image").css("left"))+100*s+"px"),X(".sl-image").animate(o,p.animationSpeed,function(){S=!1,A(i,t)})}else S=!1,A(i,t);p.additionalHtml&&0===X(".sl-additional-html").length&&X("<div>").html(p.additionalHtml).addClass("sl-additional-html").appendTo(X(".sl-image"))}}},A=function(t,e){""!==t&&void 0!==t&&p.captions&&k.html(t).css({width:e+"px"}).hide().appendTo(X(".sl-image")).delay(p.captionDelay).fadeIn("fast")},O=function(t,e){var n={};n[i+"transform"]="translateX("+e+")",n[i+"transition"]=i+"transform "+t+"s linear",X(".sl-image").css(n)},W=function(){X(N).on("resize."+T,R),X(Y).on("click."+T+" touchstart."+T,".sl-close",function(t){t.preventDefault(),g&&H()}),p.history&&setTimeout(function(){X(N).on("hashchange."+T,function(){g&&c()===b&&H()})},40),C.on("click."+T,"button",w(function(t){t.preventDefault(),r=0,z(X(this).hasClass("sl-next")?1:-1)},p.throttleInterval));var e=0,n=0,i=0,a=0,o=!1,s=0;q.on("touchstart."+T+" mousedown."+T,function(t){return!!o||(v&&(s=parseInt(q.css("left"))),o=!0,l=r=0,e=t.originalEvent.pageX||t.originalEvent.touches[0].pageX,i=t.originalEvent.pageY||t.originalEvent.touches[0].pageY,!1)}).on("touchmove."+T+" mousemove."+T+" pointermove MSPointerMove",function(t){if(!o)return!0;t.preventDefault(),n=t.originalEvent.pageX||t.originalEvent.touches[0].pageX,a=t.originalEvent.pageY||t.originalEvent.touches[0].pageY,r=e-n,l=i-a,p.animationSlide&&(v?O(0,-r+"px"):q.css("left",s-r+"px"))}).on("touchend."+T+" mouseup."+T+" touchcancel."+T+" mouseleave."+T+" pointerup pointercancel MSPointerUp MSPointerCancel",function(t){if(o){var e=!(o=!1);p.loop||(0===I&&r<0&&(e=!1),I>=f.length-1&&0<r&&(e=!1)),Math.abs(r)>p.swipeTolerance&&e?z(0<r?1:-1):p.animationSlide&&(v?O(p.animationSpeed/1e3,"0px"):q.animate({left:s+"px"},p.animationSpeed/2)),p.swipeClose&&50<Math.abs(l)&&Math.abs(r)<p.swipeTolerance&&H()}})},P=function(){var t=I+1<0?f.length-1:I+1>=f.length-1?0:I+1,e=I-1<0?f.length-1:I-1>=f.length-1?0:I-1;X("<img />").attr("src",f.eq(t).attr(p.sourceAttr)).on("load",function(){-1==u.indexOf(X(this).attr("src"))&&u.push(X(this).attr("src")),f.eq(I).trigger(X.Event("nextImageLoaded.simplelightbox"))}),X("<img />").attr("src",f.eq(e).attr(p.sourceAttr)).on("load",function(){-1==u.indexOf(X(this).attr("src"))&&u.push(X(this).attr("src")),f.eq(I).trigger(X.Event("prevImageLoaded.simplelightbox"))})},z=function(e){f.eq(I).trigger(X.Event("change.simplelightbox")).trigger(X.Event((1===e?"next":"prev")+".simplelightbox"));var t=I+e;if(!(S||(t<0||t>=f.length)&&!1===p.loop)){I=t<0?f.length-1:t>f.length-1?0:t,X(".sl-wrapper .sl-counter .sl-current").text(I+1);var n={opacity:0};p.animationSlide&&(v?O(p.animationSpeed/1e3,-100*e-r+"px"):n.left=parseInt(X(".sl-image").css("left"))+-100*e+"px"),X(".sl-image").animate(n,p.animationSpeed,function(){setTimeout(function(){var t=f.eq(I);h.attr("src",t.attr(p.sourceAttr)),-1==u.indexOf(t.attr(p.sourceAttr))&&E.show(),X(".sl-caption").remove(),R(e),p.preloading&&P()},100)})}},H=function(){if(!S){var t=f.eq(I),e=!1;t.trigger(X.Event("close.simplelightbox")),p.history&&(n?history.pushState("",Y.title,a.pathname+a.search):a.hash="",clearTimeout(d)),X(".sl-image img, .sl-overlay, .sl-close, .sl-navigation, .sl-image .sl-caption, .sl-counter").fadeOut("fast",function(){p.disableScroll&&L("show"),X(".sl-wrapper, .sl-overlay").remove(),C.off("click","button"),X(Y).off("click."+T,".sl-close"),X(N).off("resize."+T),X(N).off("hashchange."+T),e||t.trigger(X.Event("closed.simplelightbox")),e=!0}),h=X(),S=g=!1}},L=function(t){var e=0;if("hide"==t){var n=N.innerWidth;if(!n){var i=Y.documentElement.getBoundingClientRect();n=i.right-Math.abs(i.left)}if(Y.body.clientWidth<n){var a=Y.createElement("div"),o=parseInt(X("body").css("padding-right"),10);a.className="sl-scrollbar-measure",X("body").append(a),e=a.offsetWidth-a.clientWidth,X(Y.body)[0].removeChild(a),X("body").data("padding",o),0<e&&X("body").addClass("hidden-scroll").css({"padding-right":o+e})}}else X("body").removeClass("hidden-scroll").css({"padding-right":X("body").data("padding")});return e};return p.close&&o.appendTo(D),p.showCounter&&1<f.length&&(s.appendTo(D),s.find(".sl-total").text(f.length)),p.nav&&C.appendTo(D),p.spinner&&E.appendTo(D),f.on("click."+T,function(t){if(function(t){if(!p.fileExt)return!0;var e=X(t).attr(p.sourceAttr).match(/\.([0-9a-z]+)(?=[?#])|(\.)(?:[\w]+)$/gim);return e&&"a"==X(t).prop("tagName").toLowerCase()&&new RegExp(".("+p.fileExt+")$","i").test(e)}(this)){if(t.preventDefault(),S)return!1;M(X(this))}}),X(Y).on("click."+T+" touchstart."+T,function(t){g&&p.docClose&&0===X(t.target).closest(".sl-image").length&&0===X(t.target).closest(".sl-navigation").length&&H()}),p.disableRightClick&&X(Y).on("contextmenu",".sl-image img",function(t){return!1}),p.enableKeyboard&&X(Y).on("keyup."+T,w(function(t){r=0;var e=t.keyCode;S&&27==e&&(h.attr("src",""),S=!1,H()),g&&(t.preventDefault(),27==e&&H(),37!=e&&39!=t.keyCode||z(39==t.keyCode?1:-1))},p.throttleInterval)),this.open=function(t){t=t||X(this[0]),M(t)},this.next=function(){z(1)},this.prev=function(){z(-1)},this.close=function(){H()},this.destroy=function(){X(Y).off("click."+T).off("keyup."+T),H(),X(".sl-overlay, .sl-wrapper").remove(),this.off("click")},this.refresh=function(){this.destroy(),X(this).simpleLightbox(p)},this}}(jQuery,window,document); |
{ | ||
"name": "simplelightbox", | ||
"version": "1.14.0", | ||
"version": "1.15.0", | ||
"description": "Touch-friendly image lightbox for mobile and desktop with jQuery", | ||
@@ -5,0 +5,0 @@ "main": "dist/simple-lightbox.js", |
@@ -163,2 +163,3 @@ # simplelightbox | ||
### Changelog | ||
**1.15.0 - Merged pull request #111, fixed #101 and added possibility to close lightbox on load #74** | ||
**1.14.0 - Merged pull request #107 and #108. Thanks to RaphaelHaettich** | ||
@@ -165,0 +166,0 @@ **1.13.0 - Added featured #92 and merged pull request #98 and #99. Thanks to RaphaelHaettich** |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
7337834
0989
0.51%218
0.46%