-1

I am using fullPage.js jQuery Plugin with scrollOverflow: true. When I scroll down and want to return back to the top of the page it does not work in mobile devices.

$('#fullpage').fullpage({       
    paddingTop: '50px',
    paddingBottom: '50px',
    scrollOverflow: true
}); 
user3351236
  • 2,488
  • 10
  • 29
  • 52

1 Answers1

0

scrollOverflow acts as a normal overflow:scroll element. It is not suppose to go back to the top as you can see in this example.

Alvaro
  • 40,778
  • 30
  • 164
  • 336