Created
August 29, 2017 05:27
-
-
Save iiiBird/73534c9e86741417ccb1d8a6ec0be387 to your computer and use it in GitHub Desktop.
slick slide count and all slides
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.gallery-slider-thumb').on('init', function(event, slick, currentSlide, nextSlide){ | |
var currentSlide = slick.currentSlide + 1; | |
var slideCount = slick.slideCount; | |
$(this).parents('.gallery-slider-thumb-wr').find('.gs-count__current').text(currentSlide); | |
$(this).parents('.gallery-slider-thumb-wr').find('.gs-count__all').text(slideCount); | |
}); | |
$('.gallery-slider-thumb').on('afterChange', function(event, slick, currentSlide, nextSlide){ | |
var currentSlide = slick.currentSlide + 1; | |
$(this).parents('.gallery-slider-thumb-wr').find('.gs-count__current').text(currentSlide); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment