特效描述:利用jquery实现 鼠标滑过 弹出在线客服,利用jquery实现鼠标滑过弹出在线客服

代码部署教程

1. 引入JS

<script type=”text/javascript” src=”js/jquery-1.4.2.min.js”></script>

2. HTML代码

<style type=”text/css”>
*{margin:0;padding:0;list-style-type:none;}
a,img{border:0;}
body{font:12px/180% Arial, Helvetica, sans-serif, “宋体”;}
/* suspend */
.suspend{width:40px;height:198px;position:fixed;top:200px;right:0;overflow:hidden;z-index:9999;}
.suspend dl{width:120px;height:198px;border-radius:25px 0 0 25px;padding-left:40px;box-shadow:0 0 5px #e4e8ec;}
.suspend dl dt{width:40px;height:198px;background:url(images/suspend.png);position:absolute;top:0;left:0;cursor:pointer;}
.suspend dl dd.suspendQQ{width:120px;height:85px;background:#ffffff;}
.suspend dl dd.suspendQQ a{width:120px;height:85px;display:block;background:url(images/suspend.png) -40px 0;overflow:hidden;}
.suspend dl dd.suspendTel{width:120px;height:112px;background:#ffffff;border-top:1px solid #e4e8ec;}
.suspend dl dd.suspendTel a{width:120px;height:112px;display:block;background:url(images/suspend.png) -40px -86px;overflow:hidden;}
* html .suspend{position:absolute;left:expssion(eval(document.documentElement.scrollRight));top:expssion(eval(document.documentElement.scrollTop+200))}
</style>
<div style=”height:2000px;”></div>
<div class=”suspend”>
<dl>
<dt class=”IE6PNG”></dt>
<dd class=”suspendQQ”><a href=”http://www.cxvn.com/wpa/qunwpa?idkey=cb91b633f1db596a948828f4f333dbb7394ceda014c958cf” target=”_blank”></a></dd>
<dd class=”suspendTel”><a href=”javascript:void(0);”></a></dd>
</dl>
</div>
<script type=”text/javascript”>
$(document).ready(function(){
$(“.suspend”).mouseover(function() {
$(this).stop();
$(this).animate({width: 160}, 400);
})
$(“.suspend”).mouseout(function() {
$(this).stop();
$(this).animate({width: 40}, 400);
});
});
</script>
<div style=”text-align:center;margin:50px 0; font:normal 14px/24px ‘MicroSoft YaHei’;”>
</div>

下载地址

立即下载

1.《浮动在线客服代码 鼠标滑过弹出客服》援引自互联网,旨在传递更多网络信息知识,仅代表作者本人观点,与本网站无关,侵删请联系页脚下方联系方式。

2.《浮动在线客服代码 鼠标滑过弹出客服》仅供读者参考,本网站未对该内容进行证实,对其原创性、真实性、完整性、及时性不作任何保证。

3.文章转载时请保留本站内容来源地址,https://www.cxvn.com/code/kf/715.html