zablokowanie scrolowania
blokowanie scroll na tabletach i smartfonach poprzez:
w js:
//target the entire page, and listen for touch events
$('html, body').on('touchstart touchmove', function(e){
//prevent native touch activity like scrolling
e.preventDefault();
});
w css:
html, body {
max-width: 100%;
max-height: 100%;
overflow: hidden;
}
–
Hope this helps and happy coding :)