javascript - fullpage.js - If 'scrolloverflow' is set to true can't scroll down to the next section -


i'm using fullpage.js scrolloverflow: true , autoscrolling: true. once reach bottom of section overflowing content won't jump next 1 unless click on next navigation dot.

tried isolate bug in js bin, i'm not able reproduce it. no errors found in console, , i'm using plugin's 2.8.1 version.

if head this bin you'll see reaching bottom of section 3 triggers jump section four. not happen on end. ideas on or how fix it?

my current settings initialize fullpage.js these:

$('#fullpage').fullpage({   easingcss3: 'cubic-bezier(0.645, 0.045, 0.355, 1.000)',   navigation: true,   navigationposition: 'left',   scrolloverflow: true }); 

seems issue recent bug encountered when fullpage.js made jump , started using iscroll.

adding following project's css seems solve problem:

.fp-scroller{   overflow:hidden; } 

more information here.


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -