Thanks for this clone, I used it to start playing with fullpage.js on my portfolio site. Some things I added for my simple 3 section site.
- Styling to hide the scroll bar entirely (works on chrome, no on firefox).
- Set
lockAnchors: true,
to hide the url changes from the anchors (#p1,#p2,#p3) - Using the raw git links:
(header css) https://cdn.rawgit.com/alvarotrigo/fullPage.js/master/jquery.fullPage.cs
(footer script) https://cdn.rawgit.com/alvarotrigo/fullPage.js/master/jquery.fullPage.js
Here is the webkit css I used to “hide” the scrollbar;
<style>
::-webkit-scrollbar
{
width: 0px; /* for vertical scrollbars */
height: 0px; /* for horizontal scrollbars */
}
::-webkit-scrollbar-track
{
background: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-thumb
{
background: rgba(0, 0, 0, 0);
}
</style>