$(function () { $(".language").mouseenter(function () { $(this).find(".l_hide").slidedown() }).mouseleave(function () { $(this).find(".l_hide").slideup() }) //客服 $(".kf span").hover(function () { $(this).find("div").show(); }, function () { $(this).find("div").hide(); }); $(".kf span div").hover(function () { $(this).show(); }, function () { $(this).hide(); }); $(".kf .back_top").click(function () { $("html,body").animate({ "scrolltop": 0 }, 1000); }); //收起客服 var i = 0; $(".shou").click("fast", function () { i++; if (i % 2 == 0) { $(this).removeclass('on'); $(".kf").css({ "right": "20px" }); } else { $(this).addclass('on'); $(".kf").css({ "right": "-67px" }); } //展开客服 $(".zhan").click(function () { $(this).delay(10000).stop().fadeout(); $(".kf").css({ "right": "30px" }); $(".shou").css({ "right": "92px" }); }); }); $(window).scroll(function () { var h = $(window).height(); var sc = $(window).scrolltop(); //客服显示 // if (sc > 0) { // $(".kf").show(); // } else { // $(".kf").hide(); // } // settimeout(function () { // $(".kf").show(); // }, 2000); }); });