特效介绍

模仿小猪cms官网右侧悬浮在线客服jquery代码,功能包括二维码,客服QQ,客服电话,返回顶部按钮等。默认收起来,鼠标附上去展开。使用的话,将QQ、二维码和电话换成您的。
使用方法
1、下载解压,在head区域引用文件5imoban.net.css2、在文件中加入<!-- 代码 开始 --><!-- 代码 结束 -->之间的代码
3、复制images文件夹里的图片到相应的路径
4、修改代码中的QQ号和电话号码,替换二维码图片
5、在</body>前引入jQuery库
6、调用js
$(document).ready(function(){
$("#leftsead a").hover(function(){
if($(this).prop("className")=="youhui"){
$(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")=="youhui"){
$(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(){if(scroll=="off") return;$("html,body").animate({scrollTop: 0}, 600);});
//右侧导航 - 二维码
$(".youhui").mouseover(function(){
$(this).children(".2wm").show();
})
$(".youhui").mouseout(function(){
$(this).children(".2wm").hide();
});
});
