$(function(){ /*start*/ /*nav*/ var nav = $("#c_static_001-1653717330832 .e_container-1,#c_static_001-1653717330832 .e_navigationA-4,#c_static_001-1653717330832 .e_loop-5,#c_static_001-1653717330832 .e_container-18,#c_grid-116273709439191") var win = $(window); //得到窗口对象 var sc = $(document); //得到document文档对象。 win.scroll(function () { if (sc.scrollTop() >= 10) { nav.addClass("fixed"); //$("#c_static_001-1653717330832 .e_container-1").addClass("fixed"); //$(".tNavBox").addClass("setHeight"); } else { nav.removeClass("fixed"); // $("#c_static_001-1653717330832 .e_container-1").removeClass("fixed"); //$(".tNavBox").removeClass("setHeight"); } }) $("#c_static_001-1653717330832 .e_container-1").mouseenter(function(){ if (sc.scrollTop() < 10) { nav.addClass("fixed"); } }) $("#c_static_001-1653717330832 .e_container-1").mouseleave(function(){ if (sc.scrollTop() < 10) { nav.removeClass("fixed"); } }) var wow = new WOW({ boxClass: 'wow', //需要执行动画的元素的 class animateClass: 'animated', //animation.css 动画的 class offset: 0, //距离可视区域多少开始执行动画 mobile: true, //是否在移动设备上执行动画 live: true //异步加载的内容是否有效 }); wow.init(); if($(".prodetail").length > 0){ $(".prodetail").find("table").wrap("
"); } /*end*/ })