Last active
August 25, 2016 00:56
-
-
Save yevhenii-horbenko/264d6c1e1d833255fd105ed6567230e2 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
$(".controls").on("click", ".control", function(){ | |
$(".controls .control").removeClass("active"); //удаляем класс во всех вкладках | |
$(this).addClass("active"); //добавляем класс текущей (нажатой) | |
}); | |
$(".control1").click(function(){ | |
$('.header-bg').css({'background-image' : 'url(img/box1-slide1.jpg)'}); | |
}); | |
$(".control2").click(function(){ | |
$('.header-bg').css({'background-image' : 'url(img/box1-slide2.jpg)'}); | |
}); | |
$(".control3").click(function(){ | |
$('.header-bg').css({'background-image' : 'url(img/box1-slide3.jpg)'}); | |
}); | |
$(".control4").click(function(){ | |
$('.header-bg').css({'background-image' : 'url(img/box1-slide4.jpg)'}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment