“jQuery проверьте, виден ли элемент в просмотре” Ответ

jQuery проверьте, виден ли элемент в просмотре

// this function runs every time you are scrolling

$(window).scroll(function() {
    var top_of_element = $("#element").offset().top;
    var bottom_of_element = $("#element").offset().top + $("#element").outerHeight();
    var bottom_of_screen = $(window).scrollTop() + $(window).innerHeight();
    var top_of_screen = $(window).scrollTop();

    if ((bottom_of_screen > top_of_element) && (top_of_screen < bottom_of_element)){
        // the element is visible, do something
    } else {
        // the element is not visible, do something else
    }
});
Ugly Unicorn

Если элемент полностью виден в jQuery Viewport

$.fn.isInViewport = function() {var elementTop = $(this).offset().top;var elementBottom = elementTop + $(this).outerHeight();var viewportTop = $(window).scrollTop();var viewportBottom = viewportTop + $(window).height();return elementBottom > viewportTop && elementTop < viewportBottom;};
Drab Dugong

Ответы похожие на “jQuery проверьте, виден ли элемент в просмотре”

Вопросы похожие на “jQuery проверьте, виден ли элемент в просмотре”

Больше похожих ответов на “jQuery проверьте, виден ли элемент в просмотре” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования