javascript - Sliding on mobile issue (Iphone) -


when slide down / website in mobile, first slide buggy, looks slides in right direction , comes few px other direction (but first slide in new direction has issue). think better thing test on mobile phone: https://even-mind.com

how can fix it? hope can me guys!

for moment, thing found delete owl-carousel.js script, sliding becomes smooth of course carousel isn't working, can see here: https://dev.even-mind.com/even-mind

(tested on iphone 5)

by looking in dom elements inspector can find out while scrolling down position of header changes absolute fixed , maybe causes issue.

this header before scrolling:

<div id="header" class="header"> 

and after scrolling:

<div id="header" class="header header-fixed header-prepare"> 

try change html , give header fixed position start:

<div id="header" class="header header-fixed"> 

Comments