sçuçu
sçuçu

Reputation: 3070

Sliding of onepage-scroll.js not works properly on tablet?

I am trying to use onepage-scroll.js.

i have problems scrolling in a tablet, iPad, while i am trying to view demo of jquery.onepage-scroll.js served locally on my mac. i can view this local page from iPad safari but the scroll just not sliding, suddenly switching usually skipping the next page; and not responding easily. also, some pages' text are not on the screen, and on each page i see scroll bar when i touch (thought may be related to the problem and illuminates parts.)

but it is ok when navigate by tapping pagination bullets.

i want this plug-in's one page scroll animation and pagination bullets at the same time.

What is the problem? How to fix it?

Another page by page scroll plug-in fullPage.js does have the pagination bullets and its scroll works on my iPad safari and on desktop browser.

Upvotes: 1

Views: 2324

Answers (1)

Alvaro
Alvaro

Reputation: 41595

fullPage.js does have bullets if you use the option navigation:true. Here's a living example:

http://alvarotrigo.com/fullPage/examples/navigationV.html

You should initializate the plugin with the navigation option set to true:

$(document).ready(function () {
    $.fn.fullpage({
        navigation: true,
        navigationPosition: 'right'
    });
});

Upvotes: 3

Related Questions