滚动时,我希望 "position: fixed" 内容在碰到它时不会移动 (class)

When scrolling, I want the "position: fixed" content to not move if it hits this (class)

当“position: fixed”碰到“class=LimitPoint”时,我想让它停下来不动。

但是“position: fixed”的内容越过“LimitPoint”到“bottom”然后就消失了..

是否可以像附图中那样让“position: fixed”停在“LimitPoint”上?

enter image description here

如果你停在“极限点”然后再次向上滚动,我希望它随之移动。

为什么它不在“极限点”停止?

求助..!

+)使用position:sticky很方便,但是首页只有static,relative,absolute,fixed,inherit这5种 应用此代码。不可能使用“粘性”,所以我不可避免地尝试用脚本来应用它..TT

※我不会说英语所以用了翻译器。这就是为什么我的话可能不自然。请理解。

$(window).scroll(function() {
    if (window.pageYOffset > ($('.LimitPoint').offset().top - $('.fixedList').outerHeight())) {
        $('.fixedBox').removeClass('fixed');
        $('.fixedBox').addClass('Limit');
    } else {
        $('.fixedBox').removeClass('Limit');
        $('.fixedBox').addClass('fixed');
    }
});
ul,li { 
    margin: 0;
    padding: 0;
    list-style: none; }

#topArea {
    min-height: 200vh;
    background: #f4f4f4;
}

.fixedBox {
    position: fixed;
    width: 100%;
    padding: 30px;
    left: 0;
    bottom: 0; 
    border: 0;
    z-index: 88;
}

.fixedBox.fixed {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0; 
    z-index: 88;
}

.fixedBox.Limit {
    position: absolute; 
    left: 0;
    bottom: 0; 
    z-index: 88;
}

.fixedBox .fixedList { 
    color: coral;
    font-size: 30px;
    font-weight: 600;
}

.LimitPoint {
    width: 100%;
    height: 1px;
    background: red;
}

#bottomArea {
    position: relative;
    margin: 120px 0 0;
    padding: 0 5%;
}

#bottomArea ul div {
    position: relative;
    display: flex;
    flex-direction: row;
}

#bottomArea ul li {
    padding: 7px;
}

#bottomArea ul li img {
    width: 100%;
    height: auto;
}
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>

<div class="fixedBox">
    <ul class="fixedList">
        <li>content</li>
        <li>content</li>
        <li>content</li>
        <li>content</li>
    </ul>
</div>

<div id="topArea"> </div>


<div class="LimitPoint"></div>


<div id="bottomArea">
    <ul>
        <div>
            <li><img src="https://url.kr/inj9yz"></li>
            <li><img src="https://url.kr/inj9yz"></li>
            <li><img src="https://url.kr/inj9yz"></li>
        </div>
        <div>
            <li><img src="https://url.kr/inj9yz"></li>
            <li><img src="https://url.kr/inj9yz"></li>
            <li><img src="https://url.kr/inj9yz"></li>
        </div>
    </ul>
</div>

这可以用没有 JS 的纯 CSS 来完成,.fixedBox 元素应该为此重新排序,像这样:

ul,li { 
    margin: 0;
    padding: 0;
    list-style: none; }

#topArea {
    min-height: 200vh;
    background: #f4f4f4;
}

.fixedBox {
    position: sticky;
    width: 100%;
    padding: 30px;
    left: 0;
    bottom: 0; 
    border: 0;
    z-index: 88;
}

.fixedBox .fixedList { 
    color: coral;
    font-size: 30px;
    font-weight: 600;
}

.LimitPoint {
    width: 100%;
    height: 1px;
    background: red;
}

#bottomArea {
    position: relative;
    margin: 120px 0 0;
    padding: 0 5%;
}

#bottomArea ul div {
    position: relative;
    display: flex;
    flex-direction: row;
}

#bottomArea ul li {
    padding: 7px;
}

#bottomArea ul li img {
    width: 100%;
    height: auto;
}
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>


<div id="topArea"> </div>

<div class="fixedBox">
    <ul class="fixedList">
        <li>content</li>
        <li>content</li>
        <li>content</li>
        <li>content</li>
    </ul>
</div>

<div class="LimitPoint"></div>


<div id="bottomArea">
    <ul>
        <div>
            <li><img src="https://url.kr/inj9yz"></li>
            <li><img src="https://url.kr/inj9yz"></li>
            <li><img src="https://url.kr/inj9yz"></li>
        </div>
        <div>
            <li><img src="https://url.kr/inj9yz"></li>
            <li><img src="https://url.kr/inj9yz"></li>
            <li><img src="https://url.kr/inj9yz"></li>
        </div>
    </ul>
</div>

我建议在滚动上应用 position: sticky;。几天前我 运行 遇到了这个问题:

希望对您有所帮助:)