Created
October 1, 2014 16:57
-
-
Save utinajerolps/d1113f8562fc3f2e1058 to your computer and use it in GitHub Desktop.
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
var main = function() { | |
$('.dropdown-toggle').click(function() { | |
$('.dropdown-menu').toggle(); | |
}); | |
$('.arrow-next').click(function(){ | |
var currentSlide = $('.active-slide'); | |
var nextSlide = currentSlide.next(); | |
var currentDot = $('.active-dot'); | |
var nextDot = currentDot.next(); | |
if(nextSlide.length == 0) { | |
nextSlide = $('.slide').first(); | |
} | |
currentSlide.fadeOut(600).removeClass('active-slide'); | |
nextSlide.fadeIn(600).addClass('active-slide'); | |
currentDot.removeClass('active-dot'); | |
nextDot.addClass('active-dot'); | |
}); | |
}; | |
$(document).ready(main); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment