index.js 519 B

1234567891011121314151617181920212223242526
  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. }
  18. function download() {
  19. window.open('https://h5.uptoyo.com/download','_blank')
  20. }