Fullpage js - Can I add another fullpage section that is visible only on mobile screen?

Viewed 68

I have 3 sections in total in web view. But when it comes to mobile view, I need one more section in between the second and the last section.

Anchors are provided for each section of the web view. Now, how do I add one more anchor for the section that is added only on mobile?

1 Answers

Anchors can not be added dynamically. You would have to destroy and initialize fullPage.js again by using fullpage_api.destroy() and then initializing fullPage.js with the new anchors.

Related