div固定显示的几种方法-创新互联

很多时候我们会受到一些需求:

创新互联公司是少有的成都网站建设、网站建设、营销型企业网站、微信小程序、手机APP,开发、制作、设计、卖友情链接、推广优化一站式服务网络公司,自2013年创立以来,坚持透明化,价格低,无套路经营理念。让网页惊喜每一位访客多年来深受用户好评

1、div一直置顶

2、div一直置底

3、超过一定的位置之后div置顶

4、超过一定位置之后div置底

那么下面针对上面的几个问题写几个案例:

一、div一直在屏幕的上方,这个倒是容易咱们直接使用position:fixed;然后设置他的top值和left就可以了,别忘了设置宽度哦

<div class="top">
<div class="topf">跟单</div>
</div>
<style>
.top,.topf{ height:100px; width:100%;}
.topf{ position:fixed; top:0; left:0; background:#999; text-align:center; font-size:20px; color:#fff;}
</style>
点击这里查看demo -》

二、这个跟上面的例子是一样的,我不不多说了

<div class="bottom">
<div class="bottomf">跟单</div>
</div>
<style>
.bottom,.bottomf{ height:100px; width:100%;}
.bottomf{ position:fixed; bottom:0; left:0; z-index:12; background:#999; text-align:center; font-size:20px; color:#fff;}
</style>

三、这个就比较有意思了,有些时候咱们的导航在banner的下方

如下图:
这时候咱们的需求就出来了,当咱们的滚动条走到banner图的底部的时候需要把nav的部分悬挂(position:fixed; top:0);

这时候咱们就得计算了,先获取nav到document顶部的距离,然后在获取滚动条的长度,相减就能得到window的顶部的距离,当两者的相减<=0的时候悬挂。

html代码如下

<div class="center">
<div class="centerf">跟单www.gendan5.com</div>
</div>

CSS代码如下:

<style>
.center{ position:relative; z-index:12;}
.center,.centerf{ height:100px; width:100%;}
.centerf{ background:#666; text-align:center; font-size:20px; color:#fff;}
.on{ position:fixed; top:0; left:0; z-index:12;}
.onm{ position:fixed; bottom:0; left:0; z-index:12;}
</style>

JS代码如下:

<script type="text/javascript">
$(function () {
function divtop(){
var boxTop = $('.center').offset().top;
var scrTop = $('body,html').scrollTop();
//头部定位
if ((boxTop - scrTop) < 0){
if ($('.centerf').hasClass('on')){

}else{
                $('.centerf').addClass('on')
            }
        }else{
            if ($('.centerf').hasClass('on')){
                $('.centerf').removeClass('on')
            }else{

            }
        };
    };
    divtop();
    $(window).scroll(function () {
        divtop();
    });
    $(window).resize(function(){
        divtop();
    });
});

</script>

四、还有超过一定位置之后div置底
Html代码:

<div class="center">
<div class="centerf">跟单www.gendan5.com</div>
</div>

CSS代码:

<style>
.center{ position:relative; z-index:12;}
.center,.centerf{ height:100px; width:100%;}
.centerf{ background:#666; text-align:center; font-size:20px; color:#fff;}
.onm{ position:fixed; bottom:0; left:0; z-index:12;}
</style>

JS代码:

<script type="text/javascript">
$(function () {
function divbottm(){
var boxTop = $('.center').offset().top;
var scrTop = $('body,html').scrollTop();
var winHei = $(window).height();
//头部定位
if((boxTop - scrTop - winHei + 100) < 0){
if ($('.centerf').hasClass('onm')){

}else{
                $('.centerf').addClass('onm')
            }
        }else{
            if ($('.centerf').hasClass('onm')){
                $('.centerf').removeClass('onm')
            }else{

            }
        }
    };
    divbottm();
    $(window).scroll(function () {
        divbottm();
    });
    $(window).resize(function(){
        divbottm();
    })
});

</script>
看到代码很多人都会有一个疑问,为什么scroll和resize时间中再执行一遍?这是因为有些人在浏览网页的时候会改变浏览器的大小的缘故,当浏览器的大小有变化的时候咱们带再次计算数值,然后进行调整,好了,完毕

另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。

文章题目:div固定显示的几种方法-创新互联
本文路径:https://www.cdcxhl.com/article30/idjpo.html

成都网站建设公司_创新互联,为您提供App设计网站策划定制开发营销型网站建设全网营销推广Google

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

h5响应式网站建设