$(function(){ /*主大图切换*/ $(".mbanner .focus").sudyfocus({ p:2, zWidth:1920, zHeight:800, title:{ isAutoWidth: true, active:false }, text:{ active: false, isAutoHeight: false, href: false }, response: true, speed:700, pagination: true, navigation: true, isNavHover: false, href:true, effect: 'fade' }); /*新闻图片切换*/ $(".post-11 .focus").sudyfocus({ p:11, zWidth:362, zHeight:253, title:{ isAutoWidth: false, active:true }, text: { active: false, isAutoHeight: false, href: false }, response: true, speed:700, pagination: true, navigation: true, isNavHover: false, href:true, effect: 'fade' }); /*新闻tab切换*/ $(".post-33").sudyTab({ handle:".tit .title", content:".con .boxm,.more_btn .more_text", trigger:"mouseenter", start:1, autoPlay:{ active:false } }); $(".post-61 .i3 .sub-item:odd").addClass("l"); /*友情链接下拉*/ $(".botlinks").each(function(index, el){ $(el).find(".links-wrap").hover(function(){ $(this).addClass('wrap-open').children('.link-items').stop(true,true).slideDown(300); },function(){ $(this).removeClass('wrap-open').children('.link-items').stop(true,true).slideUp(100); }); }); $(".post-22").find(".news").each(function(){ var marth = $(this).find(".news_days").text(); $(this).find(".news_days").text(getMonthEN(marth).slice(0,2)); }); function getMonthEN(n){ var num = parseInt(n, 10), month = ""; if (num == 1) { month = "一月" } if (num == 2) { month = "二月" } if (num == 3) { month = "三月" } if (num == 4) { month = "四月" } if (num == 5) { month = "五月" } if (num == 6) { month = "六月" } if (num == 7) { month = "七月" } if (num == 8) { month = "八月" } if (num == 9) { month = "九月" } if (num == 10) { month = "十月" } if (num == 11) { month = "十一" } if (num == 12) { month = "十二" } return month; } var os = function(){ var ua = navigator.userAgent, isWindowsPhone = /(?:Windows Phone)/.test(ua), isSymbian = /(?:SymbianOS)/.test(ua) || isWindowsPhone, isAndroid = /(?:Android)/.test(ua), isFireFox = /(?:Firefox)/.test(ua), isChrome = /(?:Chrome|CriOS)/.test(ua), isTablet = /(?:iPad|PlayBook)/.test(ua) || (isAndroid && !/(?:Mobile)/.test(ua)) || (isFireFox && /(?:Tablet)/.test(ua)), isPhone = /(?:iPhone)/.test(ua) && !isTablet, isPc = !isPhone && !isAndroid && !isSymbian; return { isTablet: isTablet, isPhone: isPhone, isAndroid : isAndroid, isPc : isPc }; }(); if(os.isAndroid || os.isPhone || os.isTablet){ /*$(".main .add").click(function(){ $(this).parent("#footer").prev("#container-60").slideToggle(); $(this).parent("#footer").prevAll("#container-5").slideToggle(); });*/ $(".post-51 .tt").each(function(){ var _this = $(this); $(this).on("click",function(){ $(".post-61 .menu-item .sub-menu").slideUp(); $(this).next(".con").slideToggle(); }); }); $(".post-61 .menu-item").each(function(){ var _this = $(this); $(this).on("click",function(){ $(".post-51 .tt").next(".con").slideUp(); _this.siblings().find(".sub-menu").slideUp(); $(this).find(".sub-menu").slideToggle(); }); }); }else{ $(".main .add").click(function(){ $(this).parent("#footer").prev("#container-60").slideToggle(); }); } });