求类似百度贴吧底部通栏代码,如:http://tieba.baidu.com/f?kw=%BF%C9%BF%DA%BF%C9%C0%D6 在底部会随滚动条上下的通栏代码,如果有关闭影藏效果更好,在网上搜没搜到,不知道哪位高手有该JS特效代码,谢谢!

解决方案 »

  1.   

    不知道LZ想说的是什么样的个东西啊...没有看到LZ所说的所谓底部的东西...
      

  2.   

    这里不知道怎么传截图,我传到百度空间里了,这是图片地址:http://hi.baidu.com/mmxxzzhh/blog/item/926a8bdc6ae9f6cab6fd488d.html一般你打开百度任何一个贴吧等个10来秒钟底部就会出现这个通栏的,我不知道是不是有的浏览器不能显示
    我想要他的JS代码,呵呵,谢谢
      

  3.   

    fixed 定位
     
    <!doctype html>
    <html dir="ltr" lang="zh-CN">
      <head>
        <meta charset="utf-8"/>
        <title>CSS Position Fixed for IE6</title>
        <style>
    * html,* html body   {background-image:url(about:blank);background-attachment:fixed;}
    * html .fixed-top    {position:absolute;bottom:auto; top:expression(eval(document.documentElement.scrollTop +(document.documentElement.clientHeight-this.offsetHeight)/2 ));}
    * html .fixed-right  {position:absolute;right:0px;left:auto;}
    * html .fixed-bottom {position:absolute;bottom:auto;top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)));}
    * html .fixed-left   {position:absolute;right:auto;left:expression(eval(document.documentElement.scrollLeft));}
    .fixed-bottom  {
      position:fixed;
      left:0px;
      bottom:20px;
      background:aqua;
      width:200px;
      height:200px;
    }
    .fixed-right{
      position:fixed;
      right:0px;
      left:auto;
      top:200px;
      top:expression(eval(document.documentElement.scrollTop +(document.documentElement.clientHeight-this.offsetHeight)/2 ));
      background:red;
      width:200px;
      height:200px;
    }
    .fixed-top{
      position:fixed;
      top:0px;
      left:0px;
      background:blue;
      width:200px;
      height:200px;
    }
        </style>  </head>
      <body>
      <div style='height:2000px;width:500px;margin:10px auto; border:1px solid red;'></div>
       <div class="fixed-top"></div>
        <div class="fixed-bottom"></div>
         <div class="fixed-right"></div>
        
      
      </body>
    </html>