21 lines
679 B
JavaScript
Executable File
21 lines
679 B
JavaScript
Executable File
/*
|
|
* dm-tabs.js v1.1
|
|
*
|
|
* Самый лёгкий и быстрый плагин jQuery для
|
|
* создания вкладк(табов)
|
|
*
|
|
* (c) 2014 @dobrovoi http://dbmast.ru
|
|
*/
|
|
|
|
(function(s) {
|
|
var n;
|
|
s(".tabs").on("click", "li:not(.active)", function() {
|
|
n = s(this).parents(".tabs_block"), s(this).dmtabs(n)
|
|
}), s.fn.dmtabs = function(n) {
|
|
s(this).addClass("active").siblings().removeClass("active"), n.find(".box").eq(s(this).index()).show(1, function() {
|
|
s(this).addClass("open_tab")
|
|
}).siblings(".box").hide(1, function() {
|
|
s(this).removeClass("open_tab")
|
|
})
|
|
}
|
|
})(jQuery); |