码迷,mamicode.com
首页 > 编程语言 > 详细

javascript 滚动条下拉导航fixed

时间:2014-11-23 17:29:04      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   os   sp   java   on   

<!doctype html>

<html>
<style>
    body{
        margin:0;
        padding:0;    
    }
    #top{
        background:#000;
        width:400px;
        height:30px;
        
    }
    .a{
        position:fixed;
        top:0;
        left:0;
    }

</style>
    <body>
        <div style="height:300px;width:100%;background:#ccc;">
        </div>
        <div id="top">
        </div>
        <div style="height:1900px;">
        </div>
    
        <script>
        window.onscroll=function(){
        var t = document.documentElement.scrollTop || document.body.scrollTop;  
        var Otop =    document.getElementById(top);
            if(t > 300){
                var A = Otop.offsetHeight+Otop.offsetTop;
                Otop.style.position=fixed;
                Otop.style.left=0;
                Otop.style.top=0;
            }else{
                Otop.style.position=‘‘;
            }
        }

        
        </script>
    
    </body>
</html>

 

javascript 滚动条下拉导航fixed

标签:style   blog   io   ar   color   os   sp   java   on   

原文地址:http://www.cnblogs.com/xinlinux/p/4116673.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!