站长圈

jQuery右侧边栏二维码QQ客服返回顶部代码

分类:计算机/互联网 时间:2020-05-21 11:10 浏览:260
概述
基于jquery.1.11.1.min.js制作的简洁jQuery右侧栏客服代码,有微信二维码、QQ、电话显示及返回顶部功能,网页右侧悬浮层,鼠标移动上去有效果。js代码:$(function() {          
内容

0.jpg

基于jquery.1.11.1.min.js制作的简洁jQuery右侧栏客服代码,有微信二维码、QQ、电话显示及返回顶部功能,网页右侧悬浮层,鼠标移动上去有效果。js代码:

$(function() {                 $("#service a").hover(function() {                     if ($(this).prop("className") == "weixin_area") {                         $(this).children("img.hides").show();                     } else {                         $(this).children("div.hides").show();                         $(this).children("img.shows").hide();                         $(this).children("div.hides").animate({marginRight: '0px'}, '0');                     }                 }, function() {                     if ($(this).prop("className") == "weixin_area") {                         $(this).children("img.hides").hide();                     } else {                         $(this).children("div.hides").animate({marginRight: '-163px'}, 0, function() {                             $(this).hide();                             $(this).next("img.shows").show();                         });                     }                 });                 $("#top_btn").click(function() {                     $("html,body").animate({scrollTop: 0}, 600);                 });                 //右侧导航 - 二维码                 $(".weixin_area").hover(function() {                     $(this).children(".weixin").show();                 },function(){                     $(this).children(".weixin").hide();                 })             });


评论
资讯正文页右侧广告
底部广告
网站首页  |   关于我们  |   广告合作  |   联系我们  |   隐私条款  |   免责声明  |   网站地图
CopyRight 2014-2024 站长圈 | ICP证:粤ICP备16065033号-15
联系客服
技术咨询 售前小郑 客服明明 联系客服
0769-33314958
手机版

扫一扫进手机版
返回顶部