$(function(){ var wow = new wow({ boxclass: 'wow', animateclass: 'animated', offset: 0, mobile: true, live: true }); wow.init(); //搜索 $(".js-search").click(function(){ var parent = $(this).parents(".text"), child = parent.find(".input"); if(child.hasclass("open")){ child.removeclass("open"); parent.find(".nav-list").fadein(); }else{ child.addclass("open"); parent.find(".nav-list").fadeout(); } }); //导航 $(".public-nav .nav-list").find(".item").hover(function(){ var index = $(this).index(); $(this).addclass("current").siblings().removeclass("current"); if(index==1){ $(".public-cover .cover").show(); $(".public-drop").eq(0).addclass("open").siblings().removeclass("open"); }else if(index==3){ $(".public-cover .cover").show(); $(".public-drop").eq(1).addclass("open").siblings().removeclass("open"); }else if(index==4){ $(".public-cover .cover").show(); $(".public-drop").eq(2).addclass("open").siblings().removeclass("open"); }else if(index==5){ $(".public-cover .cover").show(); $(".public-drop").eq(3).addclass("open").siblings().removeclass("open"); }else{ $(".public-drop").removeclass("open"); $(".public-cover .cover").hide(); } }); $(".public-drop").hover(function(){ $(this).addclass("open"); },function(){ $(this).removeclass("open"); $(".public-cover .cover").hide(); }) //视频播放 $(".js-play").click(function(){ $(".video-popup").removeclass("hidden"); }); $(".video-close").click(function(){ var video = $(".video-popup").find(".video").get(0); video.pause(); $(".video-popup").addclass("hidden"); }) $(document).scroll(function(){ var top = $(document).scrolltop(); if(top>200){ $(".public-nav").addclass("fixed"); }else{ $(".public-nav").removeclass("fixed"); } }); }) //验证是否为空 function isnull(val) { if(val == "" || val == null || val == undefined) return true; return false; } //验证码倒计时 function reg(count,obj){ var count=count; var interval=setinterval(function(){ if(count>0){ obj.val(count+'s'); obj.attr('disabled',true); }else{ obj.attr('disabled',false); obj.val('重获验证码'); clearinterval(interval); } count--; },1000); } (function($) { $.fn.fullimages = function(fisher) { var fisher = $.extend({ imgwidth: null, imgheight: null, }, fisher) var count = $(this).find("img").length; var nvalue = 0; var ovalue = 0; var _this = $(this); setinterval(function(){ resizefun(); },10) $(window).resize(function(e) { resizefun(); }); function resizefun() { /*轮播图全屏*/ var imgh = fisher.imgheight; var imgw = fisher.imgwidth; var hvalue = imgh / imgw; var wvalue = imgw / imgh; if ($(window).width() / $(window).height() < wvalue) { _this.find("img").css("width", $(window).height() * wvalue); _this.find("img").css("margin-left", -(($(window).height() * wvalue) - $(window).width()) / 2); _this.find("img").css("height", $(window).height()); } else { _this.find("img").css("width", $(window).width()); _this.find("img").css("margin-left", 0); _this.find("img").css("height", $(window).width() * hvalue); } } }; } (jquery));