$(function() { new wow().init(); // 顶部导航条 $(window).scroll(function() { //获取滚动条滚动的位置 var ostop = $(window).scrolltop(); if (ostop > 100) { $("#nav-bar").css({ background: "#fff", }) } else { $("#nav-bar").removeattr("style") } }) // 控制首页的产品系列效果 var warp_time; $(".ghj-product-warp").mouseover(function() { var that = $(this) warp_time = settimeout(function() { that.addclass('wrap-active').siblings().removeclass('wrap-active') that.children('.ghj-warp-info').css({ left: "0.5rem" }); that.siblings().children('.ghj-warp-info').css({ left: "-4.40rem", }); }, 300); }).mouseleave(function() { cleartimeout(warp_time); }); // 控制底部导航链接 }) //