/**! * lg-autoplay.js | 1.0.0 | October 5th 2016 * http://sachinchoolur.github.io/lg-autoplay.js * Copyright (c) 2016 Sachin N; * @license GPLv3 */(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.LgAutoplay = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o
'); } // set progress _this.progress(); // Start autoplay if (_this.core.s.autoplay) { _this.startlAuto(); } // cancel interval on touchstart and dragstart utils.on(_this.el, 'onDragstart.lgtm touchstart.lgtm', function () { if (_this.interval) { _this.cancelAuto(); _this.canceledOnTouch = true; } }); // restore autoplay if autoplay canceled from touchstart / dragstart utils.on(_this.el, 'onDragend.lgtm touchend.lgtm onSlideClick.lgtm', function () { if (!_this.interval && _this.canceledOnTouch) { _this.startlAuto(); _this.canceledOnTouch = false; } }); }; Autoplay.prototype.progress = function () { var _this = this; var _progressBar; var _progress; utils.on(_this.el, 'onBeforeSlide.lgtm', function () { // start progress bar animation if (_this.core.s.progressBar && _this.fromAuto) { _progressBar = _this.core.outer.querySelector('.lg-progress-bar'); _progress = _this.core.outer.querySelector('.lg-progress'); if (_this.interval) { _progress.removeAttribute('style'); utils.removeClass(_progressBar, 'lg-start'); setTimeout(function () { utils.setVendor(_progress, 'Transition', 'width ' + (_this.core.s.speed + _this.core.s.pause) + 'ms ease 0s'); utils.addClass(_progressBar, 'lg-start'); }, 20); } } // Remove setinterval if slide is triggered manually and fourceautoplay is false if (!_this.fromAuto && !_this.core.s.fourceAutoplay) { _this.cancelAuto(); } _this.fromAuto = false; }); }; // Manage autoplay via play/stop buttons Autoplay.prototype.controls = function () { var _this = this; var _html = ''; // Append autoplay controls _this.core.outer.querySelector(this.core.s.appendAutoplayControlsTo).insertAdjacentHTML('beforeend', _html); utils.on(_this.core.outer.querySelector('.lg-autoplay-button'), 'click.lg', function () { if (utils.hasClass(_this.core.outer, 'lg-show-autoplay')) { _this.cancelAuto(); _this.core.s.fourceAutoplay = false; } else { if (!_this.interval) { _this.startlAuto(); _this.core.s.fourceAutoplay = _this.fourceAutoplayTemp; } } }); }; // Autostart gallery Autoplay.prototype.startlAuto = function () { var _this = this; utils.setVendor(_this.core.outer.querySelector('.lg-progress'), 'Transition', 'width ' + (_this.core.s.speed + _this.core.s.pause) + 'ms ease 0s'); utils.addClass(_this.core.outer, 'lg-show-autoplay'); utils.addClass(_this.core.outer.querySelector('.lg-progress-bar'), 'lg-start'); _this.interval = setInterval(function () { if (_this.core.index + 1 < _this.core.items.length) { _this.core.index++; } else { _this.core.index = 0; } _this.fromAuto = true; _this.core.slide(_this.core.index, false, false); }, _this.core.s.speed + _this.core.s.pause); }; // cancel Autostart Autoplay.prototype.cancelAuto = function () { clearInterval(this.interval); this.interval = false; if (this.core.outer.querySelector('.lg-progress')) { this.core.outer.querySelector('.lg-progress').removeAttribute('style'); } utils.removeClass(this.core.outer, 'lg-show-autoplay'); utils.removeClass(this.core.outer.querySelector('.lg-progress-bar'), 'lg-start'); }; Autoplay.prototype.destroy = function () { this.cancelAuto(); if (this.core.outer.querySelector('.lg-progress-bar')) { this.core.outer.querySelector('.lg-progress-bar').parentNode.removeChild(this.core.outer.querySelector('.lg-progress-bar')); } }; window.lgModules.autoplay = Autoplay; }); },{}]},{},[1])(1) });