$(function () { // 事件 $(".zx_btm_o").click(function () { $(this).prev().toggleClass("zx_right"); }); // 返回顶部 $('.p_backtop').removeClass("zx_hi"); $(window).scroll(function () { if ($(this).scrollTop() > 100) { $('.p_backtop').addClass("zx_hi"); } else { $('.p_backtop').removeClass("zx_hi"); } }); let llhei = $(document.body).height(); $('.p_backtop').click(function () { $('html ,body').animate({ scrollTop: 0 }, { duration:1200, easing:"easeInOutCubic" }); return false; }); $('.p_backbottom').click(function () { $('html ,body').animate({ scrollTop: llhei }, { duration:1200, easing:"easeInOutCubic" }); return false; }); // 添加类名 $(".zx_type").each(function () { var ttt = $(this).text(); $(this).parent().addClass("zx_" + ttt) }); // 获取客户名称并补充到弹出信息 $(".zx_haoname").each(function(){ let nametr = $(this).find("span").text(); $(this).next().next(".zx_xjie").find(".zx_zh").prepend("

" + nametr + "

") }); // 微信补充信息 $(".zx_6").find(".zx_zh").prepend("

扫一扫微信二维码
关注best365体育入口中文版动态

") $(".zx_6").find(".s_img").prepend("

微信二维码

") }); $(function(){ $(window).scroll(function(){ var $this = $(this); var targetTop = $(this).scrollTop(); var height = $(window).height(); if (targetTop >= 1000){ $("#c_product_detail_078-1678756940387").addClass("backs"); }else{ $("#c_product_detail_078-1678756940387").removeClass("backs"); } }) }); $('a[href*="#"]:not([href="#"])').click(function() { if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) { var target = $(this.hash); target = target.length ? target : $('[name=' + this.hash.slice(1) + ']'); if (target.length) { $('html, body').animate({ scrollTop: target.offset().top -150 }, 1000); return false; } } });