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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
$(document).ready(function () {
init();
});
$(window).load(function() {
autoSize();
});
function swiper(){
var mySwiper = new Swiper ('.banner .swiper-container', {
direction: 'horizontal',
pagination : '.pagination',
loop: true,
initialSlide :0,
speed:1500,
autoplay:4000,
autoplayDisableOnInteraction:false,
})
$('.banner .swiper-button-prev').click(function(){
mySwiper.swipePrev();
})
$('.banner .swiper-button-next').click(function(){
mySwiper.swipeNext();
})
var mySwiper2 = new Swiper ('.newCenter .swiper-container', {
direction: 'horizontal',
pagination : '.pagination',
loop: true,
initialSlide :0,
speed:1000,
autoplay:3000,
autoplayDisableOnInteraction:false,
})
$('.newCenter .swiper-button-prev').click(function(){
mySwiper2.swipePrev();
})
$('.newCenter .swiper-button-next').click(function(){
mySwiper2.swipeNext();
})
$('.newCenter .swiper-slide').mouseover(function(){
mySwiper2.stopAutoplay();
})
$('.newCenter .swiper-slide').mouseleave(function(){
mySwiper2.startAutoplay();
})
var mySwiper3 = new Swiper ('.investorEnterpries .swiper-container', {
direction: 'horizontal',
pagination : '.pagination',
loop: true,
initialSlide :0,
speed:500,
autoplay:3000,
autoplayDisableOnInteraction:false,
})
$('.investorEnterpries .swiper-button-prev').click(function(){
mySwiper3.swipePrev();
})
$('.investorEnterpries .swiper-button-next').click(function(){
mySwiper3.swipeNext();
})
if($('div[class="listEnterpries"]').length<4){
mySwiper3.stopAutoplay();
}
}
$(document).on("click", ".types button", function() {
$(this).siblings().removeClass("select");
$(this).addClass("select");
$("#"+$(this).attr("id")+"List").siblings().filter(".list ").addClass("hide");
$("#"+"rd_"+$(this).attr("id")).siblings().css('display','none');
$("#"+$(this).attr("id")+"List").removeClass("hide");
$("#"+"rd_"+$(this).attr("id")).css('display','block');
});
$(document).on("mouseenter", ".specialShow .spencialPanel", function() {
if($(this).hasClass("foucss")){return;}
$(this).addClass("foucss");
$(".PanelText").css("bottom","-48px");
$(this).find(".PanelText").animate({bottom:'5px'});
$(".panelBg").css("bottom","-50px");
$(this).find(".panelBg").animate({bottom:'0px'});
});
$(document).on("mouseleave", ".spencialPanel", function() {
$(this).removeClass("foucss");
});
/*业务动态动画
var finish = true;;
$(document).on("click", ".specialLogo", function() {
if(!finish){return;}
finish = false;
$(".specialLogo").css("display","block");
$(".showDetail").css({"width":"0px","display":"none"});
$(".businessDynamicList>li").each(function(){
var className = $(this).attr("id")+"Fixed";
$(this).removeClass(className);
})
$(this).css("display","none");
$(this).parent().find(".showDetail").css("overflow","hidden");
$(this).parent().find(".showDetail").css("display","block");
//$(".businessDynamic .show").animate({width:"0px"},"normal");
var indexNum = $(this).parent().index();
$(".businessDynamicList>li:gt('"+indexNum+"')").each(function(){
var className = $(this).attr("id")+"Fixed";
$(this).addClass(className);
})
$(this).parent().find(".showDetail").animate({width:"888px"},"normal","swing",function(){finish=true;});
});
*/
function autoSize(){
var imgHeight = $(".banner img.bannerSmall").height();
$(".banner .swiper-container").height(imgHeight);
$(".banner .swiper-wrapper").height(imgHeight);
$(".banner .swiper-slide").height(imgHeight);
imgHeight = $(".listEnterpries img").height() * 3;
$(".investorEnterpries .swiper-container").height(imgHeight);
$(".investorEnterpries .swiper-wrapper").height(imgHeight);
$(".investorEnterpries .swiper-slide").height(imgHeight);
}
/*公告滚动*/
function gonggaoScroll(){
$('.marquee').kxbdMarquee({
direction:'left',
eventA:'mouseenter',
eventB:'mouseleave'
});
}
//function tab(){
// setTimeout(function tabSsxw(){
// $('#ssxw').click();
// setTimeout(function tabDjxw(){
// $('#djxw').click();
// setTimeout(function tabJtyw(){
// $('#jtyw').click();
// tab();
// },5000);
// },5000);
// },5000);
//}
var point_v = 0;
var swtimer = null;
function autoTab(){
var time=5000;
if (swtimer != null) {
clearTimeout(swtimer);
}
swtimer = setTimeout(function(){
swtype( (point_v+1)%3 );
}, time);
}
function swtype(pv) {
if(pv == 0){
$('#jtyw').addClass('select');
$('#djxw').removeClass('select');
$('#ssxw').removeClass('select');
$('#rd_jtyw').css('display','block');
$('#rd_ssxw').css('display','none');
$('#rd_djxw').css('display','none');
$('#jtywList').removeClass('hide');
$('#djxwList').addClass('hide');
$('#ssxwList').addClass('hide');
point_v = 0;
}else if(pv == 1){
$('#ssxw').addClass('select');
$('#jtyw').removeClass('select');
$('#djxw').removeClass('select');
$('#rd_jtyw').css('display','none');
$('#rd_ssxw').css('display','block');
$('#rd_djxw').css('display','none');
$('#ssxwList').removeClass('hide');
$('#djxwList').addClass('hide');
$('#jtywList').addClass('hide');
point_v = pv;
}else if(pv == 2){
$('#djxw').addClass('select');
$('#ssxw').removeClass('select');
$('#jtyw').removeClass('select');
$('#rd_jtyw').css('display','none');
$('#rd_ssxw').css('display','none');
$('#rd_djxw').css('display','block');
$('#djxwList').removeClass('hide');
$('#jtywList').addClass('hide');
$('#ssxwList').addClass('hide');
point_v = pv;
}
autoTab();
}
function init(){
$("#home").addClass("select");
// 专题页面跳转
$('.spencialPanel').on('click', function(){
window.open($(this).attr('href'));
});
$('.panelMobile').on('click', function(){
window.open($(this).attr('href'));
});
$('.link').on('click', function(){
window.open($(this).attr('href'));
});
swiper();
window.onresize = autoSize;
gonggaoScroll();
$(".typeTab").click(function(){
if (swtimer != null) {
clearTimeout(swtimer);
}
swtype(parseInt($(this).data("p")));
});
setTimeout(function tabSsxw(){
$('#ssxw').click();
autoTab();
},5000);
}