Home > Article > Web Front-end > jQuery implements dark QQ customer service effect code displayed on the right side that can be displayed by sliding to the left
This article mainly introduces jQuery to implement the dark QQ customer service effect code that can be displayed on the right side and slid to the left. It involves the implementation techniques of jQuery controlling the dynamic transformation of page element styles. It has certain reference value. Friends in need can refer to it. Below, the details are as follows:
This is a black QQ customer service code, displayed on the right side of the web page. After clicking, the complete content of QQ customer service will expand to the left. It is applicable to a wide range of websites. I have posted many in the past. Online customer service, each model has a different style. You can search for "online customer service" in the special effects section of the web page to see if there is one you need.
A screenshot of the running effect is as follows:
The online demo address is as follows:
http://demo.jb51.net/ js/2015/jquery-right-show-qq-online-kf-codes/
The specific codes are as follows:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>一款黑色简洁大气的在线客服代码</title> <style> *{margin: 0;padding: 0;} body{text-align: left;font-size: 12px;} .kefu_cs{background: rgba(51, 51, 51, 0.9);position: fixed;top: 130px;right: 1px;_position: absolute;z-index: 999;filter: progid: DXImageTransform.Microsoft.gradient(enabled='true', startColorstr='#E5333333', endColorstr='#E5333333');} .kefu_cs a{color: #00A0E9;} .kefu_cs a: hover{color: #ff8100;text-decoration: none;} .kefu_cs .floatL{width: 36px;float: left;position: relative;z-index: 1;} .kefu_cs .floatL a{font-size: 0;text-indent: -999em;display: block;} .kefu_cs .floatR{width: 130px;float: left;padding: 5px;overflow: hidden;} .kefu_cs .floatR .cn{background: #F7F7F7;} .kefu_cs .cn h3{font-size: 14px;color: #333;font-weight: 600;line-height: 24px;padding: 5px} .kefu_cs .cn ul{padding: 0 0 0 8px;} .kefu_cs .cn ul li{line-height: 38px;height: 38px;border-bottom: solid 1px #E6E4E4;overflow: hidden;} .kefu_cs .cn ul li span{color: #777;} .kefu_cs .cn ul li img{vertical-align: middle;} .kefu_cs .btnOpen, .kefu_cs .btnCtn{position: relative;z-index: 9;top: 0;left: 0;background-image: url(images/kefu.png);background-repeat: no-repeat;display: block;width: 20px;height: 146px;padding: 8px;} .kefu_cs .btnOpen{background-position: 0px 0;} .kefu_cs .btnCtn{background-position: -35px 0;} .kefu_cs ul li.top{border-bottom: solid #ACE5F9 1px;} .kefu_cs ul li.bot{border-bottom: none;} </style> <script type="text/javascript" src="jquery-1.6.2.min.js"></script> <script type="text/javascript" src="main.js"></script> </head> <body> <p id="floatTools" class="kefu_cs"> <p class="floatL"> <a style="display: block" id="aFloatTools_Show" class="btnOpen" title="查看在线客服" onClick="javascript:$('#pFloatToolsView').animate({width: 'show', opacity: 'show'}, 'normal',function(){ $('#pFloatToolsView').show();kf_setCookie('RightFloatShown', 0, '', '/', 'www.baidu.com'); });$('#aFloatTools_Show').attr('style','display:none');$('#aFloatTools_Hide').attr('style','display:block');" href="javascript:void(0);"> 展开</a> <a style="display: none" id="aFloatTools_Hide" class="btnCtn" title="关闭客服" onClick="javascript:$('#pFloatToolsView').animate({width: 'hide', opacity: 'hide'}, 'normal',function(){ $('#pFloatToolsView').hide();kf_setCookie('RightFloatShown', 1, '', '/', 'www.baidu.com'); });$('#aFloatTools_Show').attr('style','display:block');$('#aFloatTools_Hide').attr('style','display:none');" href="javascript:void(0);"> 收缩</a> </p> <p id="pFloatToolsView" class="floatR" style="display: none"> <p class="cn"> <h3 class="titZx">产品销售</h3> <ul> <li><span>客服1</span> <a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=123456&site=qq&menu=yes"> <img border="0" src="http://wpa.qq.com/pa?p=2:123456:51" alt="ShopNC客服1" title="ShopNC客服1" /></a> </li> </li> <li><span>客服2</span> <a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=123456&site=qq&menu=yes"> <img border="0" src="http://wpa.qq.com/pa?p=2:123456:51" alt="ShopNC客服2" title="ShopNC客服2" /></a></li> </ul> <h3>大宗订制</h3> <ul> <li><span>订 制</span> <a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=123456&site=qq&menu=yes"> <img border="0" src="http://wpa.qq.com/pa?p=2:123456:51" alt="大宗订制服务" title="大宗订制服务" /></a></li> </ul> <h3>售后服务</h3> <ul> <li><span>售 后</span> <a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=123456&site=qq&menu=yes"> <img border="0" src="http://wpa.qq.com/pa?p=2:123456:51" alt="售后服务客服" title="售后服务客服" /></a></li> </ul> </p> </p> </p> </body> </html>
The above is the entire content of this chapter, more related For tutorials, please visit jQuery Video Tutorial!