accordion.js
907 Bytes
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
var Slide = require('./yohoui/YH.slide');
var $ = require('yoho-jquery');
var $contain = $('.slide-accordion');
var $item = $contain.find('li');
var width = $item.width(),
spn = parseInt($('.home-page').width(), 10) === 1150 ? (120 + 5) : (102 + 5),
slide;
function switchfun(to) {
$item.each(function(index) {
$(this).css('zIndex', index);
if (index <= to) {
$(this).stop().animate({
left: index * spn
}, 400);
} else {
$(this).stop().animate({
left: (to) * spn + width + spn * (index - to - 1)
}, 400);
}
});
}
switchfun(0);
slide = new Slide({
length: 5,
loop: false,
auto: false,
timeout: 2,
index: 0
});
slide.on('change', function(data) {
switchfun(data.to);
});
$item.mouseover(function() {
slide.go($(this).index());
});
slide.init();