$(function() { $(".search i").click(function() { if ($(this).hasClass("fa-search")) { $(this).removeClass("fa-search").addClass("fa-times") $(".search_text").slideLeftShow(500); } else { $(".search_text").slideLeftHide(100) } }); jQuery.fn.slideLeftShow = function(speed, callback) { this.animate({ width: "155px" }, speed, callback); $(".search").addClass("active"); }; jQuery.fn.slideLeftHide = function(speed, callback) { this.animate({ width: "0px" }, speed, function() { var $search_w = $(".search_text").width(); if ($search_w == 0) { $(".search").removeClass("active"); $(".search i").removeClass("fa-times").addClass("fa-search"); } }); }; var $window = $(window); var $nav = $('#header'); var navTop = $nav.offset().top + $nav.height(); $window.scroll(function() { var scrollTop = $(document).scrollTop(); var $width = $(window).width() if ($width <= 768) { if (scrollTop > 0) { if (!$nav.hasClass('fixed')) { $nav.addClass('fixed'); //$('.fixed').find('a.logo_2 img').attr("src","../img/xdlogo.png"); } } else { $nav.removeClass('fixed'); // $('.nav_z').find('a.logo_2 img').attr("src","../img/logo.png"); }; } else { if (scrollTop > 100) { if (!$nav.hasClass('fixed')) { $nav.addClass('fixed'); //$('.fixed').find('a.logo_2 img').attr("src","../img/xdlogo.png"); } } else { $nav.removeClass('fixed'); var $width = $(window).width(); //$('.nav_z').find('a.logo_2 img').attr("src","../img/logo.png"); }; } }); $(".sj_nav").click(function() { if ($(".nav_mobile").hasClass("showdiv")) { $(".nav_mobile").removeClass("showdiv"); } else { $(".nav_mobile").addClass("showdiv"); } }); $(".top_link").hover(function() { $(".top_link ul").stop().slideToggle(200); }) $("ul.l2-nav").hide(); $("li.l1-nav").hover(function() { $(this).find("ul.l2-nav").stop(true, true); $(this).find("ul.l2-nav").slideDown(); }, function() { $(this).find("ul.l2-nav").stop(true, true); $(this).find("ul.l2-nav").slideUp(); }); TouchSlide({ slideCell: "#focus", titCell: ".hd ul", //开启自动分页 autoPage:true ,此时设置 titCell 为导航元素包裹层 mainCell: ".bd ul", effect: "leftLoop", interTime:5000, delayTime:500, autoPlay: true, //自动播放 autoPage: true //自动分页 }); jQuery(".news_l").slide({ mainCell: ".bd ul", autoPlay: true }); $(".kxyj_r ul").find("li").hover(function() { $(this).find("img").addClass("flipInX") $(this).siblings().find("img").removeClass("flipInX") }, function() { $(".kxyj_r ul").find("li img").removeClass("flipInX") }) jQuery(".notice").slide({}); $(".filter-text").click(function() { $(".filter-list").slideToggle(200); }) $(function() { $(window).scroll(function() { if ($(window).scrollTop() > 500) { $("#back-to-top").fadeIn(800); } else { $("#back-to-top").fadeOut(800); } }); //当点击跳转链接后,回到页面顶部位置 $("#back-to-top").click(function() { $('body,html').animate({ scrollTop: 0 }, 800); }); }); $(".sideMenu .Menu_li > h3").click(function(e) { $(this).addClass("on"); $(this).parent().siblings().find("h3").removeClass("on"); $(this).parent().siblings().find("ul").slideUp(); if ($(this).is('.on')) { $(this).next("ul").slideDown(); } e.stopPropagation() }) $(".navSub1 li").click(function() { if ($(this).find(".un_style").is(":hidden")) { $(this).find(".un_style").slideDown(200).end().addClass("act"); } else { $(this).find(".un_style").slideUp(200).end().removeClass("act"); } }); $("v_news_content img").parent("p").css({"text-indent": "0px"}) $(".nry_content img").parent("p").css("text-indent","0em") })