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;
}

CSS3

Hope this helps and happy coding :)

Zobacz jeszcze

strona, post w WP

jeśli dana strona ma wyglądać tak jak już opracowany i zakodowany szablon, możemy posłużyć się poniższym kodem by zaciągnąć opracowany kod do pliku php danej...

grid na responsywnych kwadratach

Grid of squares with...