linkage-slider.js 3.08 KB
var $ = require('jquery');

(function($) {
    var LinkageSlider = function(element, options) {
        this.$element = $(element);
        this.options = $.extend({}, $.fn.linkageSlider.defaults, options);
        this.bigItem = this.$element.find('.big-slide').find('li');
        this.smallItem = this.$element.find('.small-slide').find('li');
        this.len = this.bigItem.size();
        this.index = 0;
        this.timer = null;
        this.init();
    };

    LinkageSlider.prototype = {
        init: function() {
            this._slideShow();
            if (this.len <= 1) {
                this.$element.find('.slide-switch').hide();
                return;
            }
            this._bindEvent();
            this._autoplay();
        },
        _bindEvent: function() {
            var that = this;

            this.$element.find('.slide-switch').on('click', '.next', function() {
                that._nextSlide();
                clearInterval(that.timer);
                that.timer = setInterval(function() {
                    that._nextSlide();
                }, that.options.time);
            }).on('click', '.prev', function() {
                that._prevSlide();
                clearInterval(that.timer);
                that.timer = setInterval(function() {
                    that._nextSlide();
                }, that.options.time);
            });

            this.smallItem.on('mouseenter', function() {
                that.index = $(this).index();
                clearInterval(that.timer);
                that._slideShow();
            }).on('mouseleave', function() {
                that._autoplay();
            });
        },
        _nextSlide: function() {
            if (this.index === this.len - 1) {
                this.index = 0;
            } else {
                this.index++;
            }
            this._slideShow();
        },
        _prevSlide: function() {
            if (this.index === 0) {
                this.index = this.len - 1;
            } else {
                this.index--;
            }
            this._slideShow();
        },
        _slideShow: function() {
            this.smallItem.eq(this.index).addClass('focus').siblings().removeClass('focus');
            this.bigItem.eq(this.index).fadeIn().siblings().fadeOut();
        },
        _autoplay: function() {
            var that = this;

            clearInterval(this.timer);
            this.timer = setInterval(function() {
                that._nextSlide();
            }, this.options.time);
        }
    };
    $.fn.linkageSlider = function(option) {
        return this.each(function() {
            var $this = $(this),
                data = $this.data('linkageSlider'),
                options = typeof option === 'object' && option;

            if (!data) {
                $this.data('linkageSlider', (data = new LinkageSlider(this, options)));
            }
            if (typeof option === 'string') {
                data[option]();
            }
        });
    };
    $.fn.linkageSlider.Constructor = LinkageSlider;
    $.fn.linkageSlider.defaults = {
        time: 5000
    };
})($);