Created
November 29, 2017 14:41
-
-
Save pusanukbr/10732a2dcc556fcf60635cf8294a37e7 to your computer and use it in GitHub Desktop.
Slick изменение по событию
This file contains 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
// Slick================ | |
// Иниализация слайдера | |
$('.siema').slick({ | |
fade: true, | |
autoplay: true, | |
autoplaySpeed: 5000, | |
speed: 300 | |
}); | |
// Изменение ДО сменны слайда | |
$('.siema').on('beforeChange', function( event,slick, currentSlide, nextSlide){ | |
if (currentSlide == 0) { | |
$(".main_header, .header_menu").css({ 'background-color': "#5CA5A5", "transition": "all .4s" }); | |
}else{ | |
$(".main_header, .header_menu").css({ 'background-color': "#F7B132", "transition": "all .4s" }); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment