javascript - 为什么当 slider 循环时,addClass 和removeClass 不再起作用?

标签 javascript jquery html css

我有一个轮播 slider ,其下方有 4 个圆圈,用于在显示特定 slider 时通知用户。为此,我根据索引添加和删除类。

这段代码第一次对我有效,但一旦轮播再次循环回到索引 0,它就停止工作。我知道代码正在工作,因为我的所有控制台日志都显示在我的控制台中。所以循环肯定会发生。问题是一旦 slider 循环,我的 jQuery 代码就会停止添加和删除类。

当 slider 循环回索引 0 时,如何使 jQuery 中的 addClass 和 removeClass 方法继续工作?

  <div style="display: inline-block;">
      <div class="greenCircle carouselCircle"></div>
      <div class="greyCircle2 greenCircle2 carouselCircle"></div>
      <div class="greyCircle3 greenCircle3 carouselCircle"></div>
      <div class="greyCircle4 greenCircle4 carouselCircle"></div>
    </div>

$(document).ready(function() {

if (index === 0){
  $(".carouselCircle").removeClass("greenCircle4");
  $(".carouselCircle").addClass("greyCircle4");
     console.log("ahoy I am index 0");


}

  else if(index === 1){
    $(".carouselCircle").removeClass("greenCircle");
    $(".carouselCircle").addClass("greyCircle");
     $(".carouselCircle").removeClass("greyCircle2");
      console.log("ahoy I am index 1");
    }

    else if(index === 2){
    $(".carouselCircle").removeClass("greyCircle3");
    $(".carouselCircle").addClass("greyCircle2");
       console.log("ahoy I am index 2");

    }

     else if(index === 3){
    $(".carouselCircle").removeClass("greyCircle4");
    $(".carouselCircle").addClass("greyCircle3");
     $(".carouselCircle").removeClass("greyCircle");
     $(".carouselCircle").addClass("greenCircle");
     console.log("Ahoy I am index 3");
    }

});

以下是循环代码,我将 jQuery 注入(inject)其中。它有点长,所以只有当您必须了解所有细节时才可以。

    /**
    * Wallop.js
    *
    * @fileoverview Minimal JS library to show & hide things
    *
    * @author Pedro Duarte
    * @author http://pedroduarte.me/wallop
    *
    */
    (function(global){
      function Wallop(selector, options) {
        if (!selector) { throw new Error('Missing selector. Refer to Usage documentation: https://github.com/peduarte/wallop#javascript'); }

        for (var i = 0; i < selectorPool.length; i++) {
          if (selectorPool[i] === selector) {
            throw new Error('An instance of Wallop with this selector already exists.');
          }
        }

        this.options = {
          buttonPreviousClass: 'Wallop-buttonPrevious',
          buttonNextClass: 'Wallop-buttonNext',
          itemClass: 'Wallop-item',
          currentItemClass: 'Wallop-item--current',
          showPreviousClass: 'Wallop-item--showPrevious',
          showNextClass: 'Wallop-item--showNext',
          hidePreviousClass: 'Wallop-item--hidePrevious',
          hideNextClass: 'Wallop-item--hideNext',
          carousel: true
        };

        // Whitelist elements which contain `length`
        this.whitelist = {
          'form': true
        };

        if (selector.length > 0 && !this.whitelist[selector]) {
          throw new Error('Selector cannot be an array, Refer to Usage documentation: https://github.com/peduarte/wallop#javascript');
        } else {
          this.$selector = selector;
        }

        this.options = extend(this.options, options);
        this.event = null;

        // "Global vars"
        this.reset();
        this.buttonPrevious = this.$selector.querySelector(' .' + this.options.buttonPreviousClass);
        this.buttonNext = this.$selector.querySelector(' .' + this.options.buttonNextClass);

        this.bindEvents();
        this.createCustomEvent();

        // If there is no active item, start at 0
        if (this.currentItemIndex === -1) {
          this.currentItemIndex = 0;
          addClass(this.allItemsArray[this.currentItemIndex], this.options.currentItemClass);
        }



        // Update button states to make sure the correct state is set on initialization
        this.updateButtonStates();

        // Wrapped in timeout function so event can
        // be listened from outside at anytime
        var _this = this;
        setTimeout(function() {
          _this.event.detail.currentItemIndex = _this.currentItemIndex;
          _this.$selector.dispatchEvent(_this.event);
        }, 0);
      }

      var selectorPool = [];

      var WS = Wallop.prototype;

      // Update prev/next disabled attribute
      WS.updateButtonStates = function () {
        if ((!this.buttonPrevious && !this.buttonNext) || this.options.carousel) { return; }

        if (this.currentItemIndex === this.lastItemIndex) {
          this.buttonNext.setAttribute('disabled', 'disabled');
        } else if (this.currentItemIndex === 0) {
          this.buttonPrevious.setAttribute('disabled', 'disabled');
        }
      };

      // Reset all settings by removing classes and attributes added by goTo() & updateButtonStates()
      WS.removeAllHelperSettings = function () {
        removeClass(this.allItemsArray[this.currentItemIndex], this.options.currentItemClass);
        removeClass($$(this.options.hidePreviousClass, this.$selector), this.options.hidePreviousClass);
        removeClass($$(this.options.hideNextClass, this.$selector), this.options.hideNextClass);
        removeClass($$(this.options.showPreviousClass, this.$selector), this.options.showPreviousClass);
        removeClass($$(this.options.showNextClass, this.$selector), this.options.showNextClass);

        if (!this.buttonPrevious && !this.buttonNext) { return; }

        this.buttonPrevious.removeAttribute('disabled');
        this.buttonNext.removeAttribute('disabled');
      };

      // Method to add classes to the right elements depending on the index passed
      WS.goTo = function (index) {
        if (index === this.currentItemIndex) { return; }

        // Fix the index if it's out of bounds and carousel is enabled
        index = index === -1 && this.options.carousel ? this.lastItemIndex : index;
        index = index === this.lastItemIndex + 1 && this.options.carousel ? 0 : index;

        // Exit when index is out of bounds
        if (index < 0 || index > this.lastItemIndex) { return; }

        this.removeAllHelperSettings();

        var isForwards = (index > this.currentItemIndex || index === 0 && this.currentItemIndex === this.lastItemIndex) && !(index === this.lastItemIndex && this.currentItemIndex === 0);
        addClass(this.allItemsArray[this.currentItemIndex], isForwards ? this.options.hidePreviousClass : this.options.hideNextClass);
        addClass(this.allItemsArray[index], this.options.currentItemClass + ' ' + (isForwards ? this.options.showNextClass : this.options.showPreviousClass));

        this.currentItemIndex = index;

$(document).ready(function() {

if (index === 0){
  $(".carouselCircle").removeClass("greenCircle4");
  $(".carouselCircle").addClass("greyCircle4");
     console.log("ahoy I am index 0");


}

  else if(index === 1){
    $(".carouselCircle").removeClass("greenCircle");
    $(".carouselCircle").addClass("greyCircle");
     $(".carouselCircle").removeClass("greyCircle2");
      console.log("ahoy I am index 1");
    }

    else if(index === 2){
    $(".carouselCircle").removeClass("greyCircle3");
    $(".carouselCircle").addClass("greyCircle2");
       console.log("ahoy I am index 2");

    }

     else if(index === 3){
    $(".carouselCircle").removeClass("greyCircle4");
    $(".carouselCircle").addClass("greyCircle3");
     $(".carouselCircle").removeClass("greyCircle");
     $(".carouselCircle").addClass("greenCircle");
     console.log("Ahoy I am index 3");
    }

});



    /*







        this.updateButtonStates();

        this.event.detail.currentItemIndex = this.currentItemIndex;
        this.$selector.dispatchEvent(this.event);
      };

      // Previous item handler
      WS.previous = function () {
        this.goTo(this.currentItemIndex - 1);
      };

      // Next item handler
      WS.next = function () {
        this.goTo(this.currentItemIndex + 1);
      };

      // Update global variables
      WS.reset = function () {
        this.allItemsArray = Array.prototype.slice.call(this.$selector.querySelectorAll(' .' + this.options.itemClass));
        this.currentItemIndex = this.allItemsArray.indexOf(this.$selector.querySelector(' .' + this.options.currentItemClass));
        this.lastItemIndex = this.allItemsArray.length - 1;
      };

      // Attach click handlers
      WS.bindEvents = function () {
        selectorPool.push(this.$selector);

        var _this = this;

        if (this.buttonPrevious) {
          this.buttonPrevious.addEventListener('click', function (event) {
            event.preventDefault();
            _this.previous();
          });
        }

        if (this.buttonNext) {
          this.buttonNext.addEventListener('click', function (event) {
            event.preventDefault();
            _this.next();
          });
        }

      };

      // Method to bind custom event
      WS.on = function (eventName, callback) {
        this.$selector.addEventListener(eventName, callback, false);
      };

      // Method to unbind custom event
      WS.off = function (eventName, callback) {
        this.$selector.removeEventListener(eventName, callback, false);
      };

      // Create custom Event
      WS.createCustomEvent = function () {
        var _this = this;
        this.event = new CustomEvent('change', {
          detail: {
            wallopEl: _this.$selector,
            currentItemIndex: Number(_this.currentItemIndex)
          },
          bubbles: true,
          cancelable: true
        });
      };

      // Helper functions
      function $$(element, container) {
        if (!element) { return; }
        if (!container) {
          container = document;
        }
        return container.querySelector('.' + element);
      }

      function addClass(element, className) {
        if (!element) { return; }
        element.className = (element.className + ' ' + className).trim();
      }

      function removeClass(element, className) {
        if (!element) { return; }
        element.className = element.className.replace(className, '').trim();
      }

      function extend(origOptions, userOptions){
        var extendOptions = {}, attrname;
        for (attrname in origOptions) { extendOptions[attrname] = origOptions[attrname]; }
        for (attrname in userOptions) { extendOptions[attrname] = userOptions[attrname]; }
        return extendOptions;
      }

      // Pollyfill for CustomEvent() Constructor - thanks to Internet Explorer
      // https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent#Polyfill
      function CustomEvent(event, params) {
        params = params || { bubbles: false, cancelable: false, detail: undefined };
        var evt = document.createEvent('CustomEvent');
        evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail);
        return evt;
      }

      CustomEvent.prototype = window.CustomEvent ? window.CustomEvent.prototype : {};
      window.CustomEvent = CustomEvent;

      // Exports to multiple environments
      if(typeof define === 'function' && define.amd){ //AMD
        define(function () { return Wallop; });
      } else if (typeof module !== 'undefined' && module.exports){ //node
        module.exports = Wallop;
      } else { // browser
        // use string because of Google closure compiler ADVANCED_MODE
        /* jslint sub:true */
        global['Wallop'] = Wallop;
      }
    }(this));

最佳答案

我认为您在使用特定时间后递增索引变量>setInterval(回调,intervalPeriod)

这里的问题是您正在使用jQuery选择器$(".carousalCircle")来选择<的元素em>选择所有圆圈。因此,选择适当的圆圈,然后添加/删除类(class)。

希望这暗示您理解了这个问题。

关于javascript - 为什么当 slider 循环时,addClass 和removeClass 不再起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47118164/

相关文章:

javascript - 如何修复 CSS 框上的按钮

html - 改变宽度值不会改变宽度?

javascript - 为什么即使我已经包含了引用资料,jquery marquee 也不起作用?

html - 使用内联复选框列表控制文本换行

javascript - 将字段设置为必填后仍然可以提交表单

javascript - HTML 最小值和最大值不适用于数字属性

jquery - 所有屏幕的完整背景 slider ,为较小的图像保持纵横比

javascript - AngularJS ng-repeat 对象,按对象过滤

php - Isset post 和 break for 循环

javascript - 使用 javascript/jquery 清除 gridview