zoukankan      html  css  js  c++  java
  • 商务通去掉四周的边框 好像定制一样实现方法

    很多医疗网站或者其他咨询类网站大概都用到过商务通 但是由于那个界面不是太好看 想换好看点 又要加钱定制,而我了正好也做了个这类型的工作 于是想了个办法去掉边框

    方式是用css

    首先

    配置商务通的邀请代码


    <DIV id=new_swt_wee><IMG border=0 src="http://www.120jkkf.com/templets/qishi/images/newstc.jpg" useMap=#MapAAAA><MAP id=MapAAAA name=MapAAAA><AREA href="http://pft.zoosnet.net/LR/Chatpre.aspx?id=PFT24847505" shape=rect target=_blank coords=217,212,297,242><AREA href="http://pft.zoosnet.net/LR/Chatpre.aspx?id=PFT24847505" shape=rect target=_blank coords=319,211,404,242><AREA style="CURSOR: pointer" onclick="LR_HideInvite();LR_RefuseChat();return false;" shape=rect coords=373,6,419,32></MAP></DIV>

    然后在网站的css里面加上这些

    #LRfloater1{

        position:relative;

        424px;

        height:274px;

        overflow:hidden;

     }

    #new_swt_wee{

          position:absolute;

         left:0px;

        top:0px;

    }

    原理就是让最外面的div 宽度和高度正好等于你设置的 超出部分都被隐藏掉了。

    可以直接在商务通的代码里面加以下:

    document.writeln("<style type="text/css">");
    document.writeln("#LRfloater1 {position:relative;0px;height:0px;overflow:hidden;}");
    document.writeln("</style>");

    或者:
    document.writeln("#LRfloater1 {position:relative;0px;height:0px;overflow:hidden;}");

    清风明月本无价,近水远山皆有情。
  • 相关阅读:
    Android学习---- 十月
    第17章 使用PHP和MySQL实现身份验证
    第13章 MySQL高级编程
    第12章 MySQL高级管理
    第11章 使用PHP从Web访问MySQL数据库
    第10章 使用MySQL数据库
    第9章 创建Web数据库
    第5章 代码重用与函数编写
    NOIP模拟赛-奶牛晒衣服(dry)
    BZOJ1008 /乘法原理+快速幂 解题报告
  • 原文地址:https://www.cnblogs.com/onlylove2015/p/4541517.html
Copyright © 2011-2022 走看看