Cloneable Fullpage.js - Ready for code improvements

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.

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>
1 Like