我是靠谱客的博主 糟糕巨人,最近开发中收集的这篇文章主要介绍html右侧客服代码,非常好看的jQuery网站右侧固定在线客服代码,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

js代码

$(document).ready(function(){

/* ----- 侧边悬浮 ---- */

$(document).on("mouseenter", ".suspension .a", function(){

var _this = $(this);

var s = $(".suspension");

var isService = _this.hasClass("a-service");

var isServicePhone = _this.hasClass("a-service-phone");

var isQrcode = _this.hasClass("a-qrcode");

if(isService){ s.find(".d-service").show().siblings(".d").hide();}

if(isServicePhone){ s.find(".d-service-phone").show().siblings(".d").hide();}

if(isQrcode){ s.find(".d-qrcode").show().siblings(".d").hide();}

});

$(document).on("mouseleave", ".suspension, .suspension .a-top", function(){

$(".suspension").find(".d").hide();

});

$(document).on("mouseenter", ".suspension .a-top", function(){

$(".suspension").find(".d").hide();

});

$(document).on("click", ".suspension .a-top", function(){

$("html,body").animate({scrollTop: 0});

});

$(window).scroll(function(){

var st = $(document).scrollTop();

var $top = $(".suspension .a-top");

if(st > 400){

$top.css({display: 'block'});

}else{

if ($top.is(":visible")) {

$top.hide();

}

}

});

});

最后

以上就是糟糕巨人为你收集整理的html右侧客服代码,非常好看的jQuery网站右侧固定在线客服代码的全部内容,希望文章能够帮你解决html右侧客服代码,非常好看的jQuery网站右侧固定在线客服代码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(56)

评论列表共有 0 条评论

立即
投稿
返回
顶部