orgreen.js
1.54 KB
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
/*
* 2014/07/15
*/
$(function(){
// $(".nav-h2").hide();
// $(".common_nav").hover(
// function(){
// $(this).children(".nav-h2").show();
// },
// function(){
// $(this).children(".nav-h2").hide();
// }
// );
Tools.setSelected('u-listsum-1 dd', 'a', 'on');
$('.imp1').dilislider({
page : 3,
point : '.nw1 a',
unitlen : $('.imp1').width()
});
$('.imp2').dilislider({
page : 3,
time : 5000,
point : '.nw2 a',
unitlen : $('.imp2').width()
});
var fw = $('.five-wrap').dilislider({
page : 5,
point : '.five-nav-wrap a',
unitlen : $('.five-wrap').width()
});
//按钮点击事件
$('.bp0').click(function(){
fw.actionLeft();
return false;
});
$('.bn0').click(function(){
fw.actionRight();
return false;
});
//显示按钮
$('.lf-wrap').hover(function(){
$(this).find('a').css('z-index','2');
},function(){
$(this).find('a').css('z-index','-1');
});
//立即购买移入可视区域.
$('.good-pic').hover(function(){
if ($(this).find('.hfs').css('top')=='0px'){
$(this).find('.hfs').animate({'top' : '-170px'}, 'fast');
}
},function(){
$(this).find('.hfs').animate({'top' : '0'}, 'fast');;
});
//分类菜单下翻效果
$('.common_nav').hover(function(){
$(this).find('.nav-h2').css('display', 'block');
setTimeout(function(){
$('.common_nav').find('.nav-h2 li').addClass('open');
}, 3000)
},function(){
$(this).find('.nav-h2 li').removeClass('open').addClass('closing');
setTimeout(function(){
$('.common_nav').find('.nav-h2').css('display', 'none');
}, 3000);
});
});