forked from mattholl/jquery-css3tabslider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.css3tabslider.js
167 lines (141 loc) · 5.5 KB
/
jquery.css3tabslider.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/* jquery.css3tabslider.js v.01 2011-10-20
*
* http://mattholl.com/jquery/css3tabslider/
*
* Copyright 2011 Matthew Hollings except where noted.
* A jquery plugin which use CSS3 2D transforms if available and jQuery animation as a fallback if not
*
*/
;(function($) {
//check for css3 support use basic if else
$.css3tabslider = {};
$.css3tabslider.vendors = ['Khtml','Ks', 'O', 'Moz', 'Webkit'];
$.css3tabslider.css3transforms = (function() {
var div = document.createElement('div');
var property = 'transform';
if(property in div.style) {
return true;
} else {
property = property.replace(/^[a-z]/, function(val) {
return val.toUpperCase();
});
for(var i = 0, vendors = $.css3tabslider.vendors, len = vendors.length; i < len; i++) {
if(vendors[i] + property in div.style) {
//the browser supports css3 transforms
return true;
}
}
}
//the browser doesn't support css3 transforms
return false;
})();
//add easing for js animation - map to same string values as in css3 transforms
//http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js
// t: current time, b: begInnIng value, c: change In value, d: duration
$.easing['jswing'] = $.easing['swing'];
$.extend( $.easing, {
'def': 'ease-out',
'ease': function (x, t, b, c, d) {
return $.easing[$.easing.def](x, t, b, c, d);
},
'ease-in': function (x, t, b, c, d) {
return c*(t/=d)*t*t + b;
},
'ease-out': function (x, t, b, c, d) {
return c*((t=t/d-1)*t*t + 1) + b;
},
'ease-in-out': function (x, t, b, c, d) {
if ((t/=d/2) < 1) return c/2*t*t*t + b;
return c/2*((t-=2)*t*t + 2) + b;
},
});
/***********************************************************************/
//plugin setup return code
$.fn.css3tabslider = function(settings) {
//combine default settings with those passed in through settings object
var opts = $.extend({}, $.fn.css3tabslider.defaults, settings);
return this.each(function() {
var obj = $(this);
//apply setup css to slides
obj.css('width', opts.panel_width);
obj.css('maxWidth', opts.panel_width);
obj.css('overflow', 'hidden');
var num_slides = obj.children('#panel_container').children().size();
var container_width = num_slides * opts.panel_width;
obj.children('#panel_container').css('width', container_width);
obj.children('#panel_container').children().each(function() {
$(this).css('width', opts.panel_width);
$(this).css('float', 'left');
});
if ($.css3tabslider.css3transforms == true) {
//use css3 transforms
var slide = 0;
//find navigation and attach event to click
var links = obj.children('#navigation').children('ul').children('li');
links.each(function(index) {
var li = $(this);
var a = li.children('a');
var hash = a.attr('href');
a.bind('click', function(e) {
e.preventDefault();
location.hash = hash;
li.addClass('current').siblings().removeClass('current');
for(var i = 0, len = $.css3tabslider.vendors.length; i < len; i ++) {
var vendor = $.css3tabslider.vendors[i].replace(/^[A-Z]/, function(val) {
return val.toLowerCase();
});
$('.panel').css('-'+vendor+'-transform', 'translateX(' + index*-opts.panel_width +'px)');
$('.panel').css('-'+vendor+'-transition', '-'+vendor+'-transform '+opts.speed+'s '+opts.easing);
}
//also if there's no vendor prefix
$('.panel').css('transform', 'translateX(' + index*-opts.panel_width +'px)');
$('.panel').css('transition', '-'+vendor+'-transform '+opts.speed+'s ' +opts.easing);
slide = index;
});
});
} else {
//browser doesn't support css transforms - use jquery animation fallback
$('#navigation ul li').each(function(index) {
var li = $(this);
var a = li.children('a');
var hash = a.attr('href');
a.bind('click', function(e) {
e.preventDefault();
location.hash = hash;
li.addClass('current').siblings().removeClass('current');
$('#panel_container').stop().animate({
marginLeft: index*-opts.panel_width + 'px'
},{
speed: opts.speed*1000,
easing: opts.easing
});
});
});
}
// Is there a location (not just hashmark)?
if(location.hash.length > 1) {
// Does it match a tab-target?
var trigger = obj.find('a[href^=' + location.hash + ']');
if(trigger.length) {
trigger.parent().addClass('current');
trigger.click();
}
} else {
// No hash, but is a specific tab set current by default?
var current = obj.find('#navigation ul li.current');
if(current.length) {
current.children('a').click();
} else {
// We have no current tab, make the first one current
obj.find('#navigation ul li:first-child').addClass('current');
}
}
});
}
//default settings
$.fn.css3tabslider.defaults = {
'panel_width': 400,
'speed': 1000,
'easing': 'linear'
}
})(jQuery);