как отключить скролинг страницы, а на это событие поставить чтобы появлялся текст

369
23 января 2017, 21:08

дойдя до определенного места на страницы нужно отключить scroll страницы(вниз), и в это время на прокрутку поставить событие чтобы появлялся текст 2-3 параграфа когда весь текст будет видимый на страницы вернуть скроллинг в нормально положение, чтобы можно было листать вниз страницы: html:

<article>
            <div class="page two"></div>
            <div class="page three"></div>
            <div class="page four">
                <p>Given a jQuery object that represents a set of DOM elements, the .has() method constructs a new jQuery object from a subset of the matching elements. The supplied selector is tested against the descendants of the matching elements; the element will be included in the result if any of its descendant elements matches the selector.</p>
                <p>Given a jQuery object that represents a set of DOM elements, the .has() method constructs a new jQuery object from a subset of the matching elements. The supplied selector is tested against the descendants of the matching elements; the element will be included in the result if any of its descendant elements matches the selector.</p>
                <p>Given a jQuery object that represents a set of DOM elements, the .has() method constructs a new jQuery object from a subset of the matching elements. The supplied selector is tested against the descendants of the matching elements; the element will be included in the result if any of its descendant elements matches the selector.</p>
            </div>
            <div class="page five"></div>
        </article>

js:

$(function() {
    $("p").css("opacity", "0");
    $(window).on('scroll mousewheel', function(e){
        var elem = $(".four").offset().top;
        var pos = $(this).scrollTop();
        if (pos + 100 > elem) {
            e.preventDefault();
            e.stopPropagation();
            return false;
        }
    });
});

css:

.page {
    height: 500px;
}
READ ALSO
Переадресация писем на node.js

Переадресация писем на node.js

Требуется сделать простой редирект писем на nodejs

299
Не работает Атрибут hashtags:twitter в yandex share

Не работает Атрибут hashtags:twitter в yandex share

Здравствуйте, уважаемые пользователи Stackoverflowcom

274
AudioContext или Audio и JavaScript

AudioContext или Audio и JavaScript

Задача: проиграть друг за другом несколько аудиофайловБыло несколько попыток сделать это через Audio и через сбор сэмплов в AudioContext, однако...

422