scrollIntoView Scrolls just too far

前端 未结 21 1915
盖世英雄少女心
盖世英雄少女心 2020-12-07 10:08

I have a page where a scroll bar containing table rows with divs in them is dynamically generated from the database. Each table row acts like a link, sort of like you\'d see

相关标签:
21条回答
  • 2020-12-07 11:04

    Position Anchor By Absolute Method

    Another way do do this is to position your anchors exactly where you want on the page rather than relying on scrolling by offset. I find it allows better control for each element (eg. if you want a different offset for certain elements), and may also be more resistant to browser API changes/differences.

    <div id="title-element" style="position: relative;">
      <div id="anchor-name" style="position: absolute; top: -100px; left: 0"></div>
    </div>
    

    Now the offset is specified as -100px relative to the element. Create a function to create this anchor for code reuse, or if you are using a modern JS framework such as React do this by creating a component that renders your anchor, and pass in the anchor name and alignment for each element, which may or may not be the same.

    Then just use :

    const element = document.getElementById('anchor-name')
    element.scrollIntoView({ behavior: 'smooth', block: 'start' });
    

    For smooth scrolling with an offset of 100px.

    0 讨论(0)
  • 2020-12-07 11:08

    Found a workaround solution. Say that you want to scroll to an div, Element here for example, and you want to have a spacing of 20px above it. Set the ref to a created div above it:

    <div ref={yourRef} style={{position: 'relative', bottom: 20}}/> <Element />

    Doing so will create this spacing that you want.

    If you have a header, create an empty div as well behind the header and assign to it a height equal to the height of the header and reference it.

    0 讨论(0)
  • 2020-12-07 11:08

    Here's my 2 cents.

    I've also had the issue of the scrollIntoView scrolling a bit past the element, so I created a script (native javascript) that prepends an element to the destination, positioned it a bit to the top with css and scrolled to that one. After scrolling, I remove the created elements again.

    HTML:

    //anchor tag that appears multiple times on the page
    <a href="#" class="anchors__link js-anchor" data-target="schedule">
        <div class="anchors__text">
            Scroll to the schedule
        </div>
    </a>
    
    //The node we want to scroll to, somewhere on the page
    <div id="schedule">
        //html
    </div>
    

    Javascript file:

    (() => {
        'use strict';
    
        const anchors = document.querySelectorAll('.js-anchor');
    
        //if there are no anchors found, don't run the script
        if (!anchors || anchors.length <= 0) return;
    
        anchors.forEach(anchor => {
            //get the target from the data attribute
            const target = anchor.dataset.target;
    
            //search for the destination element to scroll to
            const destination = document.querySelector(`#${target}`);
            //if the destination element does not exist, don't run the rest of the code
            if (!destination) return;
    
            anchor.addEventListener('click', (e) => {
                e.preventDefault();
                //create a new element and add the `anchors__generated` class to it
                const generatedAnchor = document.createElement('div');
                generatedAnchor.classList.add('anchors__generated');
    
                //get the first child of the destination element, insert the generated element before it. (so the scrollIntoView function scrolls to the top of the element instead of the bottom)
                const firstChild = destination.firstChild;
                destination.insertBefore(generatedAnchor, firstChild);
    
                //finally fire the scrollIntoView function and make it animate "smoothly"
                generatedAnchor.scrollIntoView({
                    behavior: "smooth",
                    block: "start",
                    inline: "start"
                });
    
                //remove the generated element after 1ms. We need the timeout so the scrollIntoView function has something to scroll to.
                setTimeout(() => {
                    destination.removeChild(generatedAnchor);
                }, 1);
            })
        })
    })();
    

    CSS:

    .anchors__generated {
        position: relative;
        top: -100px;
    }
    

    Hope this helps anyone!

    0 讨论(0)
提交回复
热议问题