/*! lightgallery - v1.2.21 - 2016-06-28
* http://sachinchoolur.github.io/lightGallery/
* Copyright (c) 2016 Sachin N; Licensed Apache 2.0 */
!function(a, b, c, d){"use strict"; var e = {autoplay:!1, pause:5e3, progressBar:!0, fourceAutoplay:!1, autoplayControls:!0, appendAutoplayControlsTo:".lg-toolbar"}, f = function(b){return this.core = a(b).data("lightGallery"), this.$el = a(b), this.core.$items.length < 2?!1:(this.core.s = a.extend({}, e, this.core.s), this.interval = !1, this.fromAuto = !0, this.canceledOnTouch = !1, this.fourceAutoplayTemp = this.core.s.fourceAutoplay, this.core.doCss() || (this.core.s.progressBar = !1), this.init(), this)}; f.prototype.init = function(){var a = this; a.core.s.autoplayControls && a.controls(), a.core.s.progressBar && a.core.$outer.find(".lg").append('<div class="lg-progress-bar"><div class="lg-progress"></div></div>'), a.progress(), a.core.s.autoplay && a.startlAuto(), a.$el.on("onDragstart.lg.tm touchstart.lg.tm", function(){a.interval && (a.cancelAuto(), a.canceledOnTouch = !0)}), a.$el.on("onDragend.lg.tm touchend.lg.tm onSlideClick.lg.tm", function(){!a.interval && a.canceledOnTouch && (a.startlAuto(), a.canceledOnTouch = !1)})}, f.prototype.progress = function(){var a, b, c = this; c.$el.on("onBeforeSlide.lg.tm", function(){c.core.s.progressBar && c.fromAuto && (a = c.core.$outer.find(".lg-progress-bar"), b = c.core.$outer.find(".lg-progress"), c.interval && (b.removeAttr("style"), a.removeClass("lg-start"), setTimeout(function(){b.css("transition", "width " + (c.core.s.speed + c.core.s.pause) + "ms ease 0s"), a.addClass("lg-start")}, 20))), c.fromAuto || c.core.s.fourceAutoplay || c.cancelAuto(), c.fromAuto = !1})}, f.prototype.controls = function(){var b = this, c = '<span class="lg-autoplay-button lg-icon"></span>'; a(this.core.s.appendAutoplayControlsTo).append(c), b.core.$outer.find(".lg-autoplay-button").on("click.lg", function(){a(b.core.$outer).hasClass("lg-show-autoplay")?(b.cancelAuto(), b.core.s.fourceAutoplay = !1):b.interval || (b.startlAuto(), b.core.s.fourceAutoplay = b.fourceAutoplayTemp)})}, f.prototype.startlAuto = function(){var a = this; a.core.$outer.find(".lg-progress").css("transition", "width " + (a.core.s.speed + a.core.s.pause) + "ms ease 0s"), a.core.$outer.addClass("lg-show-autoplay"), a.core.$outer.find(".lg-progress-bar").addClass("lg-start"), a.interval = setInterval(function(){a.core.index + 1 < a.core.$items.length?a.core.index++:a.core.index = 0, a.fromAuto = !0, a.core.slide(a.core.index, !1, !1)}, a.core.s.speed + a.core.s.pause)}, f.prototype.cancelAuto = function(){clearInterval(this.interval), this.interval = !1, this.core.$outer.find(".lg-progress").removeAttr("style"), this.core.$outer.removeClass("lg-show-autoplay"), this.core.$outer.find(".lg-progress-bar").removeClass("lg-start")}, f.prototype.destroy = function(){this.cancelAuto(), this.core.$outer.find(".lg-progress-bar").remove()}, a.fn.lightGallery.modules.autoplay = f}(jQuery, window, document); |