fullpage.js can't move to next section on touch device -


i've set website using fullpage.js. have problems on touch-devices: when autoscrolling enabled can't swipe other section. it's on bottom of page. have issue on touch-devices i've tried (ipad & iphone chrome , safari, android chrome). on desktop computer don't have problem.

visit www.airport-signage.com see issue.

my settings fullpage.js:

$(document).ready(function() {         $('#fullpage').fullpage({             anchors: ['home', 'approach', 'work', 'services', 'company', 'team', 'contact'],             menu: '#menu',             'autoscrolling': true,             'controlarrows': true,             'slidesnavigation': false,             'verticalcentered': false,             'touchsensitivity': 5,             'css3': true,             'fixedelements': '#fixedheader',             'scrolloverflow': true,             'normalscrollelements': '#map_canvas',             'sectionscolor': ['#3df945', '#000', '#fff', '#3df945', '#000', '#fff', '#3df945'],             'onleave': function(){                 stuff             },          });     }); 

what problem be? how can fix it?

removing 'normalscrollelements': #map_canvas', helped me rid of issue.


Comments

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

javascript - Complex json ng-repeat -

jquery - Cloning of rows and columns from the old table into the new with colSpan and rowSpan -