如何实现在线客服效果:
在线客服系统在大量的网站都有应用,特别是销售类网站,可以有效的增加网站的可用性,便于客户及时联系商家,从而增加了交易成功的可能性,在线客服系统的实现方式有多种多样,这里介绍一种网上常见并且非常美观的客服系统,以此达到举一反三的目的,能够比较轻松的实现其他外观形式的客服系统,代码示例如下:
004 | < meta charset = "utf-8" > |
007 | < style type = "text/css" > |
014 | background:url(mytest/JS/img3-5_2.png) no-repeat; |
018 | filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="mytest/JS/img3-5_2.png", sizingMethod='crop'); |
019 | background:none transparent scroll repeat 0% 0%; |
023 | background:url(mytest/JS/img3-5_2.png) no-repeat; |
030 | background:url(mytest/JS/img3-5_3.png) repeat-y; |
035 | filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="mytest/JS/img3-5_3.png", sizingMethod='crop'); |
036 | background-repeat:repeat-y; |
043 | background:url(mytest/JS/img3-5_3.png) repeat-y; |
049 | background:url(mytest/JS/img3-5_4.png) no-repeat; |
054 | filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="mytest/JS/img3-5_4.png", sizingMethod='crop'); |
056 | background-repeat:repeat-y; |
062 | background:url(mytest/JS/img3-5_4.png) no-repeat; |
069 | background:url(mytest/JS/img3-5_1.png) no-repeat; |
076 | filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="mytest/JS/img3-5_1.png", sizingMethod='crop'); |
078 | background:none transparent scroll repeat 0% 0%; |
086 | background:url(mytest/JS/img3-5_1.png) no-repeat; |
105 | text-decoration:none; |
109 | text-decoration: none |
113 | border-bottom:#ffd2bf 1px solid; |
114 | border-left:#ffd2bf 1px solid; |
117 | background-color:#ffffff; |
122 | border-top:#ffd2bf 1px solid; |
123 | border-right:#ffd2bf 1px solid; |
136 | < table style = "float:left" border = "0" cellspacing = "0" cellpadding = "0" width = "157" > |
139 | < td class = "main_head" height = "39" valign = "top" > </ td > |
142 | < td class = "info" valign = "top" > |
143 | < table class = "qqtable" border = "0" cellspacing = "0" cellpadding = "0" width = "120" align = "center" > |
146 | < td align = middle >< a href = "#" target = "_blank" >< img border = 0 src = "mytest/JS/kefu_head.gif" ></ a ></ td > |
152 | < td height = 30 align = middle >< span >qq:88888888</ span ></ td > |
155 | < td height = 30 align = middle >< span >qq:88888888</ span ></ td > |
161 | < td height = 35 valign = top align = middle >< a href = "#" target = "_blank" >< img border = 0 src = "mytest/JS/img3-5-btn1.gif" width = 90 height = 25 ></ a ></ td > |
164 | < td height = 38 valign = top align = middle >< a href = "#" target = "_blank" >< img border = 0 src = "mytest/JS/img3-5-btn2.gif" width = 90 height = 25 ></ a ></ td > |
167 | < td align = middle >< div class = qun >< font color=#9b9b9b>会员交流群</ font >< br >< span >123456</ span ></ div ></ td > |
170 | < td align = middle >< div class = qun >< font color=#9b9b9b>商家交流群</ font >< br >< span >654321</ span ></ div ></ td > |
173 | < td align = middle > </ td > |
180 | < td class = "down_kefu" valign = "top" ></ td > |
184 | < div class = "Obtn" ></ div > |
186 | < div style = "height:1000px;" ></ div > |
187 | < script type = "text/javascript" > |
188 | kefu=function(id,_top,_left){ |
189 | var me=document.getElementById(id); |
191 | var d2=document.documentElement; |
192 | d1.style.height=d2.style.height='100%'; |
193 | me.style.top=_top+'px'; |
194 | me.style.left=_left+"px"; |
195 | me.style.position='absolute'; |
198 | me.style.top=parseInt(me.style.top)+(Math.max(d1.scrollTop,d2.scrollTop)+_top-parseInt(me.style.top))*0.1+'px'; |
200 | setInterval(a,10+parseInt(Math.random()*20)); |
203 | window.onload=function(){ |
204 | kefu('softwhy',100,-152) |
208 | < script type = "text/javascript" > |
215 | var o=document.getElementById("softwhy"); |
216 | var i=parseInt(o.style.left); |
219 | if(parseInt(o.style.left)< maxWidth ) |
221 | i = parseInt (o.style.left); |
225 | clearInterval(BigInter); |
231 | clearInterval(SmallInter); |
232 | BigInter = setInterval (Big,InterTime); |
236 | if(parseInt(o.style.left)>minWidth) |
238 | i=parseInt(o.style.left); |
242 | clearInterval(SmallInter); |
247 | clearInterval(BigInter); |
248 | SmallInter=setInterval(Small,InterTime); |
以上代码实现了我们想要的在网页一侧漂浮的客服系统。下面就简单介绍一下如何实现次效果:
一.实现原理:
将整个客服系统所在的softwhy对象设置为绝对定位,然后在默认状态下,将它的left属性值设置为一个恰当的负值,这样它主体部分就会被隐藏,只显示提示部分:

默认状态下被隐藏的主体部分。

默认状态下显示的提示部分。
当鼠标放在放在提示部分(也就是放在softwhy对象)时候,通过调用相应的函数,使用setInterval()不断的加大left属性值来实现客服主体部分逐渐显示的效果。当鼠标离开softwhy对象的时候,再通过调用相应的函数,使用setInterval()不断的减少left属性值来实现客服主体部分的逐渐隐藏。
softwhy对象top属性值在这里可能是个难点,它实现了当拖动滚动条的时候,客服系统具有比较任性的“弹性”的感觉,并且最终能够固定在距离窗口顶端100px的垂直位置上,此效果是结合a函数和setInterval(a,10+parseInt(Math.random()*20))实现的,这里简单介绍一下a函数的原理,主要是个数学问题:
我们想要实现的效果就是无论怎么拖动滚动条,客服系统最终在垂直位置上距离窗口上边缘100px,也就是说只要将top属性值设置为d1.scrollTop或者d2.scrollTop与100px之和就可以了。下面简单对a函数进行一下分析:
Math.max(d1.scrollTop,d2.scrollTop)+_top-parseInt(me.style.top)中,Math.max(d1.scrollTop,d2.scrollTop)+_top就是me.style.top的最终值,在通过使用setInterval()函数循环执行a函数,也就是不断的执行parseInt(me.style.top)+(Math.max(d1.scrollTop,d2.scrollTop)+_top-parseInt(me.style.top))*0.1+'px',当me.style.top=Math.max(d1.scrollTop,d2.scrollTop)+_top的时候,客服系统也就是固定在指定的位置了。