-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.mk_tab2.js
77 lines (53 loc) · 1.72 KB
/
jquery.mk_tab2.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* $.fn.tab2
****************************************************************************
////////////////////////////////////////////////////////////////////////////
@require : jquery.js
@version : 0
@lastupdate: 2011.07.16
@autor : [email protected]
////////////////////////////////////////////////////////////////////////////
タブごとにfadeInのスピードを変えれるプラグイン。
間違って作ったから取り敢えずストック。
デバッグはあんまりしてない。
****************************************************************************/
;(function($){
$(window).load(function(){
$('.ui_tab2').mk_tab2();
});
$.fn.mk_tab2 = function(options){
//default options
var defaults = {
nav: 'ul.nav',
items: 'ul.items',
startSpeed: 300,
currentClass: 'current',
speed: [300, 600, 900]
};
var o = $.extend(defaults, options);
this.each(function(){
var $this = $(this),
$nav = $this.find(o.nav + ' li a'),
$items = $this.find(o.items),
$item = $items.find('li');
$item.eq(0).css({ 'z-index': 10 }).fadeIn(o.startSpeed);
$nav.eq(0).addClass(o.currentClass);
$nav.click(function(e){
e.preventDefault();
e.stopPropagation();
var $a = $(this),
href = $a.attr('href'),
$crItem = $nav.filter('.'+o.currentClass),
crHref = $crItem.attr('href'),
$target = $item.filter(href),
speed = speed = o.speed[$item.index($target)];
$target.css({ 'z-index': 1 }).show();
$(crHref).fadeOut(speed, function(){
$target.css({ 'z-index': 10 });
$nav.removeClass(o.currentClass);
$a.addClass(o.currentClass);
});
});
});
return this;
};
})(jQuery);