PageAdmin网站内容管理系统(CMS)交流论坛

注册

 

QQ登录

只需一步,快速开始

发新话题 回复该主题

问下版主如何在首页加在线QQ咨询? [复制链接]

1#
在网上查了好多源码,不知道加在那里,是在站内广告里加吗,怎么我加了一直效果不理想呢。
还有就是能减小首页BANNER的FLASH宽度尺寸吗 ?太宽了。显得头大身子小
分享 转发
冲动是魔鬼,切记,切记!
TOP
2#

QQ咨询代码是什么类型的?JS代码就直接插入到底部信息中

FLASH尺寸大小可以自己调整的
TOP
3#

类型如下

<!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>右侧悬浮的QQ在线客服-www.amoukj.com</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
<style type="text/css">
.qqbox ank {
    color: #000;
    text-decoration: none;
}
.qqbox a:visited {
    color: #000;
    text-decoration: none;
}
.qqbox a:hover {
    color: #f80000;
    text-decoration: underline;
}
.qqbox a:active {
    color: #f80000;
    text-decoration: underline;
}

.qqbox{
    width:132px;
    height:auto;
    overflow:hidden;
    position:absolute;
    right:0;
    top:100px;
    color000000;
    font-size:12px;
    letter-spacing:0px;
}
.qqlv{
    width:25px;
    height:256px;
    overflow:hidden;
    position:relative;
    float:right;
    z-index:50px;
}
.qqkf{
    width:120px;
    height:auto;
    overflow:hidden;
    right:0;
    top:0;
    z-index:99px;
    border:6px solid #138907;
    backgroundfff;
}
.qqkfbt{
    width:118px;
    height:20px;
    overflow:hidden;
    background138907;
    line-height:20px;
    font-weight:bold;
    colorfff;
    position:relative;
    border:1px solid #9CD052;
    cursor:pointer;
    text-align:center;
}
.qqkfhm{
    width:112px;
    height:22px;
    overflow:hidden;
    line-height:22px;
    padding-rightpx;
    position:relative;
    margin:3px 0;
}
.bgdh{
    width:102px;
    padding-left:10px;
}
</style>
</head>
<body>
<div class="qqbox" id="divQQbox">
  <div class="qqlv" id="meumid" onmouseover="show()"><img src="http://www.codefans.net/jscss/demoimg/200905/qq.gif"></div>
  <div class="qqkf" style="display:none;" id="contentid" onmouseout="hideMsgBox(event)">
    <div class="qqkfbt" onmouseout="showandhide('qq-','qqkfbt','qqkfbt','K',5,1);" id="qq-1" onfocus="this.blur();">客 服 中 心</div>
    <div id="K1">
      <div class="qqkfhm bgdh"> <a href="tencent://message/?uin=6303609"; title="客服1"><img src="http://wpa.qq.com/pa?p=1:12345678:4" border="0">客服中心</a><br/></div>
      手机:13837153245</div>
    </div>
    </div>
    <div class="qqkfbt" onClick="showandhide('qq-','qqkfbt','qqkfbt','K',5,5);" id="qq-5" onfocus="this.blur();">投 诉 建 议</div>
    <div id="K5" style="display:none">
      <div class="qqkfhm bgdh"> <a href="tencent://message/?uin=66961880"; title="投诉建议"><img src="http://wpa.qq.com/pa?p=1:12345678:4" border="0">投诉建议</a><br/></div>
      <div class="qqkfhm bgdh">手机:13837153245</div>
    </div>
  </div>
</div>
<script language="javascript">
function showandhide(h_id,hon_class,hout_class,c_id,totalnumber,activeno) {
    var h_id,hon_id,hout_id,c_id,totalnumber,activeno;
    for (var i=1;i<=totalnumber;i++) {
        document.getElementById(c_id+i).style.display='none';
        document.getElementById(h_id+i).className=hout_class;
    }
    document.getElementById(c_id+activeno).style.display='block';
    document.getElementById(h_id+activeno).className=hon_class;
}
var tips;
var theTop = 100;
var old = theTop;
function initFloatTips()
{
    tips = document.getElementById('divQQbox');
    moveTips();
}
function moveTips()
{
           var tt=50;
          if (window.innerHeight)
          {
        pos = window.pageYOffset  
          }else if (document.documentElement && document.documentElement.scrollTop) {
        pos = document.documentElement.scrollTop  
          }else if (document.body) {
            pos = document.body.scrollTop;  
          }
          //http:
          pos=pos-tips.offsetTop+theTop;
          pos=tips.offsetTop+pos/10;
          if (pos < theTop){
             pos = theTop;
          }
          if (pos != old) {
             tips.style.top = pos+"px";
             tt=10;//alert(tips.style.top);  
          }
          old = pos;
          setTimeout(moveTips,tt);
}
initFloatTips();
    if(typeof(HTMLElement)!="undefined")//给firefox定义contains()方法,ie下不起作用
        {  
          HTMLElement.prototype.contains=function (obj)  
          {  
              while(obj!=null&&typeof(obj.tagName)!="undefind"){//
           if(obj==this) return true;  
               obj=obj.parentNode;
               }  
              return false;  
          }
    }
function show()
{
    document.getElementById("meumid").style.display="none"
    document.getElementById("contentid").style.display="block"
}
    function hideMsgBox(theEvent){
      if (theEvent){
        var browser=navigator.userAgent;
        if (browser.indexOf("Firefox")>0){//Firefox
            if (document.getElementById("contentid").contains(theEvent.relatedTarget)) {
                return
            }
        }
        if (browser.indexOf("MSIE")>0 || browser.indexOf("Presto")>=0){
            if (document.getElementById('contentid').contains(event.toElement)) {
                return;//结束函式
            }
        }
      }
      document.getElementById("meumid").style.display = "block";
      document.getElementById("contentid").style.display = "none";
    }
</script&gt;
</body>
</html>
冲动是魔鬼,切记,切记!
TOP
4#

版主有好点的精简点的代码吗?

给推荐一个。
冲动是魔鬼,切记,切记!
TOP
5#

腾讯有个QQ在线代码生成网页的..去生成一个就是了.
TOP
发新话题 回复该主题