首页 > 其他 > 详细

层的应用-悬浮的广告层

时间:2016-09-22 21:22:47      阅读:175      评论:0      收藏:0      [点我收藏+]

————————————————————

<script type="text/javascript">        
            function goScroll(o){
                var space=document.getElementById(o).offsetTop;
                document.getElementById(o).style.top=space+‘px‘;
                var goTo = 0;
                window.setInterval(function(){
                    var height =document.documentElement.scrollTop+document.body.scrollTop+space;
                    var top = parseInt(document.getElementById(o).style.top);
                    if(height!= top){
                        goTo = height-parseInt((height - top)*0.9);
                        document.getElementById(o).style.top=goTo+‘px‘;
                    }
                },50);
            }
            function init(){
                goScroll(‘con1‘);
            }
        </script>   

——————————————————————————

<style>
            #con1{                
                background-color:gray;                
                left: 0px;
                top: 100px;
                width:100px;
                height:100px;
                position: absolute;
                z-index = 1;
            }
        </style>

————————————————————————————

<body style="text-align:center" onload="init();">
        <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
        <div id="con1">
            这是一个广告
        </div>
        <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
    </body>

————————————————————————————

 

层的应用-悬浮的广告层

原文:http://www.cnblogs.com/hanxuming/p/5897768.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!