Created
June 15, 2017 21:56
-
-
Save Junglecrew/5a870acda319dc0580133e10f83816a0 to your computer and use it in GitHub Desktop.
jQuery Tabs Short
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
HTML: | |
<div class="wrapper"> | |
<div class="tabs"> | |
<span class="tab">Вкладка 1</span> | |
<span class="tab">Вкладка 2</span> | |
<span class="tab">Вкладка 3</span> | |
</div> | |
<div class="tab_content"> | |
<div class="tab_item">Содержимое 1</div> | |
<div class="tab_item">Содержимое 2</div> | |
<div class="tab_item">Содержимое 3</div> | |
</div> | |
</div> | |
jQuery: | |
$(".tab_item").not(":first").hide(); | |
$(".wrapper .tab").click(function() { | |
$(".wrapper .tab").removeClass("active").eq($(this).index()).addClass("active"); | |
$(".tab_item").hide().eq($(this).index()).fadeIn() | |
}).eq(0).addClass("active"); | |
CSS: | |
.wrapper .active { color: red; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment