дойдя до определенного места на страницы нужно отключить 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;
}
Айфон мало держит заряд, разбираемся с проблемой вместе с AppLab
Перевод документов на английский язык: Важность и ключевые аспекты
Какие существуют виды рекламных бордов и как выбрать подходящий?
Здравствуйте, уважаемые пользователи Stackoverflowcom
Задача: проиграть друг за другом несколько аудиофайловБыло несколько попыток сделать это через Audio и через сбор сэмплов в AudioContext, однако...