Здравствуйте форумчане.
В общем нужно сделать такой же скролл,как например на
https://www.epicgames.com/paragon/
Высоту блоков настроил.
Скролл почему то выполняется 1 раз.
То,что есть:
$(document).ready(function() {
var TimeId;
$(window).scroll(function(){
clearTimeout(TimeId);
TimeId=setTimeout(function () {
var clientHeight = document.body.clientHeight;
$('html,body').animate({
scrollTop: $(window).scrollTop() + clientHeight
});
},2)
});
});
function setheight(){
var clientHeight = document.body.clientHeight;
$('.section').height(clientHeight);
}
$(document).ready(function() {
setheight();
});
$(window).resize(function(){
setheight();
});
Помогите,пожалуйста