r>.shutter-img>a").length>1){
$("
").appendTo($(".shutter"))
}
$('.shutter').shutter({
shutterW: "100%", // 容器宽度
shutterH: H, // 容器高度
isAutoPlay: true, // 是否自动播放
playInterval: 3000, // 自动播放时间
fullPage: false // 是否全屏展示
});
$(".engineering .tabs>li").click(function(){
var index = $(this).index();
$(this).addClass("active").siblings().removeClass("active");
$(".engineering .e_content>li").eq(index).show().siblings().hide()
})
$(".yx-rotaion").each(function(){
if($(this).find(".rotaion_list>li").length==1){
$(this).yx_rotaion({ auto: true,btn:false,focus:false });
}else{
$(this).yx_rotaion({ auto: true,btn:false });
}
})
});
var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串
var isIE = userAgent.indexOf("compatible") > -1 && userAgent.indexOf("MSIE") > -1; //判断是否IE<11浏览器
if (isIE) {
var reIE = new RegExp("MSIE (\\d+\\.\\d+);");
reIE.test(userAgent);
var fIEVersion = parseFloat(RegExp["$1"]);
if (fIEVersion > 8) {
new WOW().init();
}
} else {
new WOW().init();
}