最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - change div based on how far down the page you have scrolled - Stack Overflow

programmeradmin4浏览0评论

I am trying to change the text inside a div based on how far down a page you have scrolled. I've been tinkering with jQuery's scrollTop and document height but have so far failed to produce the desired results.

How would I get the position of an element on the page and then get jQuery to do something once you have scrolled to that elements position?

Help is much appreciated!

I am trying to change the text inside a div based on how far down a page you have scrolled. I've been tinkering with jQuery's scrollTop and document height but have so far failed to produce the desired results.

How would I get the position of an element on the page and then get jQuery to do something once you have scrolled to that elements position?

Help is much appreciated!

Share Improve this question asked Mar 9, 2009 at 5:46 CawlinCawlin 2194 silver badges7 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 9

There was a question on Stackoverflow that asked something similar and I whipped up a small example to illustrate how to acplish this. I can't find the question right now, but here is the example. In this example there is a div that is shown until you scroll to a certain element in the page at which point the div is hidden. You can change this to achieve what you want, as the idea is the same. Here is the code modified for what you need:

$(document).ready(function() {
    function isScrolledIntoView(elem) {
        var docViewTop = $(window).scrollTop();
        var docViewBottom = docViewTop + $(window).height();

        var elemTop = $(elem).offset().top;
        var elemBottom = elemTop + $(elem).height();

        return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom));
    }

    var myelement = $('#formcontainer'); // the element to act on if viewable
    $(window).scroll(function() {
        if(isScrolledIntoView(myelement)) {
            // do something when element is scrolled to and viewable
        } else {
            // do something when element is not viewable
        }
    });
});

Good old ppk from quirksmode can show you how to find the position of an element: "This script finds the real position, so if you resize the page and run the script again, it points to the correct new position of the element."

发布评论

评论列表(0)

  1. 暂无评论