$(function() { $(".nav ul li").hover( function() { $(this).children('').next().stop(true, true).delay(300).slidedown(400); }, function() { $(this).children('').next().stop(true, true).delay(300).slideup(400); } ); $(".menu").click( function() { $(".menu_box").stop(true, false).delay(0).animate({ width: "100%", height: "100%" }, 0); $(".menu_box").find(".menu_mark").stop(true, false).delay(0).animate({ opacity: "0.9" }, 500); $(".menu_box").find(".btn_closed_box").stop(true, false).delay(0).animate({ opacity: "1" }, 500); $(".menu_box").find(".menu_nav").stop(true, false).delay(0).animate({ right: "0" }, 500); } ) $(".btn_closed").click( function() { $(".menu_box").stop(true, false).delay(500).animate({ width: "0", height: "0" }, 0); $(".menu_box").find(".menu_mark").stop(true, false).delay(0).animate({ opacity: "0" }, 500); $(".menu_box").find(".btn_closed_box").stop(true, false).delay(0).animate({ opacity: "0" }, 500); $(".menu_box").find(".menu_nav").stop(true, false).delay(0).animate({ right: "-80%" }, 500); } ) $('.plus').click(function() { $('.child_nav:visible').slideup().prev().removeclass('plus_on'); var subnav = $(this).parents('li').find('.child_nav'); // console.log(subnav.is(':hidden')) if(subnav.is(':hidden')) { subnav.slidedown().prev().addclass('plus_on'); } else { subnav.slideup().prev().removeclass('plus_on'); }; }) if($(window).scrolltop()>0){ $('.header,.moblie_header').addclass('mini'); } $(window).scroll(function(e){ var p=0,t=0; p = $(this).scrolltop(); if(t <= p && p > 0){ //下滚 $('.header,.moblie_header').addclass('mini'); }else{ //上滚 $('.header,.moblie_header').removeclass('mini'); } settimeout(function(){t = p;},0); }); $(".float-right-box").each(function(){ $(this).find(".f_qq").hover(function(){ $(this).toggleclass('on'); }); $(this).find(".f_wx").hover(function(){ $(this).find('.sidebox').stop(true, true).animate({ 'width': 160,'opacity':1 }, 200); },function(){ $(this).find('.sidebox').stop(true, true).animate({ 'width': 0,'opacity':0 }, 200); }); $(this).find(".f_call").hover(function(){ $(this).toggleclass('on'); }); $(this).find(".btn_top").click(function(){ $("body, html").stop().animate({ "scrolltop": 0 }); }); }); // 点击大图 $('.gallery').each(function() { // the containers for all your galleries $(this).magnificpopup({ delegate: 'a', // the selector for gallery item type: 'image', gallery: { enabled: true } }); }); // 返回顶部 $(window).scroll(function(){ var defaults = { showheight : 800, speed : 1000 }; var scrolltop=$(this).scrolltop(); if(scrolltop >= 1000){ $(".to_top").show(); } else{ $(".to_top").hide(); } }); $(".to_top").click(function(){ $("html,body").animate({scrolltop: 0}, 1000); }); $.inputstyle(); $(window).on('ajaxcomplete', function() { settimeout(function() { $(window).lazyloadxt(); }, 10); }); }); if (!(/msie [6|7|8|9]/i.test(navigator.useragent))){ new wow().init(); }; // 表单控件样式控制 ;(function($) { $.extend({ inputstyle: function() { function check(el, cl) { $(el).each(function() { $(this).parent('i').removeclass(cl); var checked = $(this).prop('checked'); if (checked) { $(this).parent('i').addclass(cl); } }) } $('input[type="radio"]').on('click', function() { check('input[type="radio"]', 'radio_bg_check'); }) $('input[type="checkbox"]').on('click', function() { check('input[type="checkbox"]', 'checkbox_bg_check'); }) }, }) })(jquery) // 十位补零 function checktime(i) { if (i<10) { i = "0" +i; } return i; }