Reputation: 103
I'm using fullpage.js to build a site with VirtualBox to test on IE 10/11. I'm noticing that when I scroll the window advances two pages down, rather than just one. Has anyone else experience this, or is it maybe that I am using VB? I'm able to replicate the bug on the full page website.
Live example: http://realbadrabbits.com/projects/fullpage/index.html
Here's my initialization:
$(document).on('ready', function() {
// Fullpage settings
$('#fullpage').fullpage({
anchors: ['landing', 'navigation', 'page1', 'page2', 'page3'],
css3: true,
navigation: true,
navigationPosition: 'left',
navigationTooltips: ['Landing', 'Navigation', 'Page 1', 'Page 2', 'Page 3'],
scrollOverflow: true,
loopBottom: true
});
});
Thanks!
Upvotes: 0
Views: 556
Reputation: 41595
I'm noticing that when I scroll the window advances two pages down, rather than just one.
It sounds like you are initializing fullPage.js multiple times! Make sure you only initiate it once!
A link to your URL will help to find the issue. Or at least, a reproduction on jsfiddle or codepen.
The question has been answered in the github issues forum. Probably due to the use of Virtual Box.
Upvotes: 1