HTML——我怎样才能“坚持"?到达页面上的特定

HTML -- How can I quot;stickquot; my navbar after reaching a specific section on page?(HTML——我怎样才能“坚持?到达页面上的特定部分后我的导航栏?)
本文介绍了HTML——我怎样才能“坚持"?到达页面上的特定部分后我的导航栏?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想了两种不同的方法来解决这个问题,但我需要帮助.

I thought of 2 different methods to approaching this, but I need assistance.

  1. 滚动到部分,然后粘住.
  2. 在滚动时隐藏元素,然后在到达页面点后取消隐藏元素.

我该怎么做?

我目前正在使用 stickyjs.

但我没有看到执行我所要求的功能.

But I don't see a feature for doing what I asked.

推荐答案

demo - http://jsfiddle.net/m6q6j8xL/3/

这是自定义js

在这个演示中,标题变为绿色(fixed),当你到达蓝色时,div 变回normal,当你是从蓝色 div 出来,它变回 fixed

in this demo the header changes to green(fixed) and when you reach to blue div changes back to normal and when u are out from the blue div it changes back to fixed

将填充添加到 div 以便在更改为固定时不会影响窗口滚动

padding is added to div so that it doesn't effect window scroll when changed to fixed

var stickyNavTop = $('.header').offset().top;

function scrolling() {
    doc = $(document).height()
    hidingtop = $('.hiding').offset().top;
    hidingbottom = $('.hiding').position().top + $('.hiding').outerHeight(true) // finding the outer height
    if ($(window).scrollTop() > hidingtop && $(window).scrollTop() < hidingbottom) {
        $('.header').removeClass('sticky');
        $('.container').css('padding-top', '0');
    }
}

var stickyNav = function () {
    var scrollTop = $(window).scrollTop();

    if (scrollTop > stickyNavTop) {
        $('.header').addClass('sticky');
        $('.container').css('padding-top', '100px');
    } else {
        $('.header').removeClass('sticky');
        $('.container').css('padding-top', '0');
    }
};

stickyNav();

$(window).scroll(function () {
    stickyNav();
    scrolling()
});

这篇关于HTML——我怎样才能“坚持"?到达页面上的特定部分后我的导航栏?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

how to remove this error quot;Response must contain an array at quot; . quot;.quot; while making dropdown(如何删除此错误quot;响应必须在quot;处包含数组。创建下拉菜单时(Q;))
Why is it necessary to use `document.createElementNS` when adding `svg` tags to an HTML document via JS?(为什么在通过JS为一个HTML文档添加`svg`标签时,需要使用`Document.createElementNS`?)
wkhtmltopdf print-media-type uses @media print ONLY and ignores the rest(Wkhtmltopdf print-media-type仅使用@media print,而忽略其余内容)
How to trim() white spaces from a string?(如何从字符串中去掉()空格?)
price depend on selection of radio input(价格取决于无线电输入的选择)
calculate price depend on selection without button(根据没有按钮的选择计算价格)