-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.mk_carrousel 2.js
167 lines (133 loc) · 3.93 KB
/
jquery.mk_carrousel 2.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
/* $.fn.mk_carrousel
****************************************************************************
/////////////////////////////////////////////////////////////////////////
@varsion : 0.1
@author : http://www.makinokobo.com - [email protected]
@last update : 2011.07.04 - [email protected]
@Copyright : Copyright (c) 2010 Skill Partners Inc. All Rights Reserved.
/////////////////////////////////////////////////////////////////////////
usage:
****************************************************************************/
;(function($){
$(window).load(function(){
//セッティングここから
////////////////////////////////////////////////////////////////////
//1段目の設定
$('#mainVisual.ui-carrousel').mk_carrousel({
speed: 10000, //スライドのスピード
captionTimeout: 3000 //キャプションが出てくるタイミング
});
//2段目の設定
$('#home-pickupCM .ui-carrousel').mk_carrousel({
speed: 3000, //スライドのスピード
captionTimeout: 3000 //キャプションが出てくるタイミング
});
//3段目の設定
$('#home-modelTimes .ui-carrousel').mk_carrousel({
speed: 3000, //スライドのスピード
captionTimeout: 3000 //キャプションが出てくるタイミング
});
//4段目右の設定
$('#home-interview .ui-carrousel').mk_carrousel({
auto: false, //この行をコメントアウトするとスライドオン
speed: 3000, //スライドのスピード
captionTimeout: 3000 //キャプションが出てくるタイミング
});
//4段目左の設定
$('#home-cmGirls, #home-yakutama').mk_carrousel({
auto: false, //変更しない
roop: false, //変更しない
captionTimeout: 3000 //キャプションが出てくるタイミング
});
////////////////////////////////////////////////////////////////////
// セッティングここまで
});
$.fn.mk_carrousel = function(options){
//default options
var defaults = {
items: 'ul',
item: 'li',
caption: '.caption',
captionTimeout: 3000,
roop: true,
auto: true,
speed: 3000,
easing: 'linear'
};
var o = $.extend(defaults, options);
this.each(function(){
var $elm = $(this);
var $items = $elm.find(o.items);
var $item = $items.find(o.item);
var itemS = $item.size();
var itemW = $item.width();
if(o.roop){
var cloneI = 0;
function cloneItem(){
var elmW = $elm.width();
var cloneS = Math.ceil(elmW/itemW)*2;
if($(o.items+' '+o.item,$elm).size()<=cloneS){
for(var i = cloneI; i<=cloneS; i++){
if($item.eq(cloneI).size()){
$items.append($item.eq(cloneI).clone());
cloneI++;
}
else{
cloneI = 0;
}
};
}
}
cloneItem();
$(window).resize(function(){
cloneItem();
});
};
function anime(){
var left = $(o.items, $elm).css('left').replace('px','')*1 - itemW || -itemW;
$items.animate({
'left': left
}, {
duration: o.speed,
easing: o.easing,
complete: function(){
if(Math.abs(left) >= itemS*itemW){
left = 0;
$(this).css('left',0);
}
auto();
},
queue: false
});
}
function auto(){
if(o.auto){
anime();
}
};
var $caption = $(o.caption ,$elm);
$caption.show();
var captionH = $caption.height() + $item.css('margin-top').replace('px','')*1 + $item.css('margin-bottom').replace('px','')*1;
var pb = $items.css('padding-bottom').replace('px','');
if(navigator.userAgent.indexOf("MSIE 6") != -1){
$caption.css('bottom', -captionH-pb-1);
}
else{
$caption.css('bottom', -captionH-pb);
}
var captionTimeout = setTimeout(function(){
$.each($caption, function(index, val){
var cT = setTimeout(function(){
$caption.eq(index).animate({
'bottom': (navigator.userAgent.indexOf("MSIE 6") != -1) ? -1 : 0
}, 100);
}, 50*index);
});
setTimeout(function(){
auto();
}, 1000);
}, o.captionTimeout);
});
return this;
};
})(jQuery);