index.js 437 B

12345678910111213141516171819202122
  1. new fullpage('#fullpage', {
  2. navigation: true,
  3. navigationPosition: 'right',
  4. afterLoad: function (origin, destination, direction) {
  5. if (destination.index === 5) {
  6. document.getElementsByClassName('menu')[0].classList.add('end')
  7. } else {
  8. document.getElementsByClassName('menu')[0].classList.remove('end')
  9. }
  10. },
  11. });
  12. function index() {
  13. fullpage_api.moveTo(1)
  14. }
  15. function about() {
  16. fullpage_api.moveTo(6)
  17. }