Skip to content

Instantly share code, notes, and snippets.

@pusanukbr
Created November 29, 2017 14:41
Show Gist options
  • Save pusanukbr/10732a2dcc556fcf60635cf8294a37e7 to your computer and use it in GitHub Desktop.
Save pusanukbr/10732a2dcc556fcf60635cf8294a37e7 to your computer and use it in GitHub Desktop.
Slick изменение по событию
// 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