gitextract_6w1ryxzd/ ├── . jshintrc ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── BACKERS.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── LICENSE ├── README.md ├── SECURITY.md ├── bower.json ├── dist/ │ ├── fullpage.css │ └── fullpage.js ├── examples/ │ ├── active-slide.html │ ├── angular-fullpage.html │ ├── auto-height.html │ ├── autoplay-video-and-audio.html │ ├── background-video.html │ ├── backgrounds-fixed.html │ ├── backgrounds.html │ ├── callbacks.html │ ├── cards.html │ ├── cinematic.html │ ├── continuous-horizontal.html │ ├── continuous-vertical.html │ ├── css3.html │ ├── custom-arrows.html │ ├── drag-and-move.html │ ├── drop-effect.html │ ├── easing-css3.html │ ├── easing-js.html │ ├── effects.html │ ├── examples.css │ ├── examples.js │ ├── fading-effect.html │ ├── fixed-headers.html │ ├── gradient-backgrounds.html │ ├── hide-sections.html │ ├── imgs/ │ │ ├── copyright.txt │ │ ├── flowers.webm │ │ └── horse.ogg │ ├── interlocked-slides.html │ ├── jquery-adapter.html │ ├── lazy-load.html │ ├── looping.html │ ├── methods.html │ ├── module_loaders/ │ │ ├── browserify-example/ │ │ │ ├── README.md │ │ │ ├── dist/ │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── index.js │ │ ├── requirejs-example/ │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── main.js │ │ │ └── require.config.js │ │ └── webpack-example/ │ │ ├── .babelrc │ │ ├── README.md │ │ ├── dist/ │ │ │ ├── index.html │ │ │ └── main.js │ │ ├── package.json │ │ ├── src/ │ │ │ └── index.js │ │ └── webpack.config.js │ ├── navigation-horizontal.html │ ├── navigation-tooltips.html │ ├── navigation-vertical.html │ ├── no-anchor.html │ ├── normal-scroll.html │ ├── normalScrollElements.html │ ├── observer.html │ ├── offset-sections.html │ ├── one-section.html │ ├── parallax.html │ ├── react-fullpage.html │ ├── reset-sliders.html │ ├── responsive-auto-height.html │ ├── responsive-height.html │ ├── responsive-slides.html │ ├── responsive-width.html │ ├── rtl.html │ ├── scroll-after-fullpage.html │ ├── scroll-horizontally.html │ ├── scrollBar.html │ ├── scrollOverflow-reset.html │ ├── scrollOverflow.html │ ├── scrolling-speed.html │ ├── simple.html │ ├── skipIntermediateItems.html │ ├── trigger-animations.html │ ├── vue-fullpage.html │ └── water-effect.html ├── gulp/ │ └── build.js ├── gulpfile.js ├── lang/ │ ├── brazilian-portuguese/ │ │ ├── README.md │ │ ├── how-to-activate-fullpage-extension.md │ │ └── parallax-extension.md │ ├── chinese/ │ │ ├── README.md │ │ ├── how-to-activate-fullpage-extension.md │ │ └── parallax-extensionmd.md │ ├── french/ │ │ ├── README.md │ │ ├── how-to-activate-fullpage-extension.md │ │ └── parallax-extension.md │ ├── japanese/ │ │ ├── README.md │ │ ├── how-to-activate-fullpage-extension.md │ │ └── parallax-extension.md │ ├── korean/ │ │ ├── README.md │ │ ├── how-to-activate-fullpage-extension.md │ │ └── parallax-extension.md │ ├── russian/ │ │ ├── README.md │ │ ├── how-to-activate-fullpage-extension.md │ │ └── parallax-extension.md │ ├── spanish/ │ │ ├── README.md │ │ ├── how-to-activate-fullpage-extension.md │ │ └── parallax-extension.md │ └── website/ │ ├── br.yml │ ├── en.yml │ ├── es.yml │ ├── fr.yml │ ├── ja.yml │ ├── ko.yml │ ├── ru.yml │ └── zh.yml ├── package.json ├── rollup.config.js ├── src/ │ ├── css/ │ │ └── fullpage.css │ ├── js/ │ │ ├── anchors/ │ │ │ ├── getAnchorsURL.js │ │ │ ├── index.js │ │ │ ├── setPageStatus.js │ │ │ └── setRecordHistory.js │ │ ├── app.js │ │ ├── arrows.js │ │ ├── autoScrolling.js │ │ ├── beyondFullpage/ │ │ │ ├── beyondFullPageHandler.js │ │ │ ├── index.js │ │ │ ├── scrollBeyondFullPage.js │ │ │ └── wheelDataHandler.js │ │ ├── bindings.js │ │ ├── callbacks/ │ │ │ ├── fireCallback.js │ │ │ ├── fireCallbacksOncePerScroll.js │ │ │ ├── nullOrSection.js │ │ │ └── nullOrSlide.js │ │ ├── common/ │ │ │ ├── addTableClass.js │ │ │ ├── cache.js │ │ │ ├── constants.js │ │ │ ├── eventEmitter.js │ │ │ ├── events.js │ │ │ ├── getSectionByAnchor.js │ │ │ ├── isScrollAllowed.js │ │ │ ├── item.js │ │ │ ├── options.js │ │ │ ├── scrollTo.js │ │ │ ├── selectors.js │ │ │ ├── silentScroll.js │ │ │ ├── state.js │ │ │ ├── supportsPassive.js │ │ │ ├── tick.js │ │ │ ├── transformContainer.js │ │ │ ├── utils.js │ │ │ └── utilsFP.js │ │ ├── console.js │ │ ├── dom/ │ │ │ ├── addInternalSelectors.js │ │ │ ├── afterRenderActions.js │ │ │ ├── destroyStructure.js │ │ │ └── prepareDom.js │ │ ├── dynamic.js │ │ ├── easing.js │ │ ├── fitToSection.js │ │ ├── fullpage.js │ │ ├── infiniteScroll/ │ │ │ ├── createInfiniteSections.js │ │ │ ├── fixPosition.js │ │ │ └── getPositions.js │ │ ├── instance.js │ │ ├── jquery-adaptor.js │ │ ├── keyboard/ │ │ │ ├── index.js │ │ │ └── setKeyboardScrolling.js │ │ ├── lazyLoad/ │ │ │ ├── lazyLoad.js │ │ │ └── lazyLoadOthers.js │ │ ├── media.js │ │ ├── menu/ │ │ │ ├── activateMenuAndNav.js │ │ │ ├── index.js │ │ │ └── styleMenu.js │ │ ├── mixed/ │ │ │ ├── warnings.js │ │ │ └── waterMark.js │ │ ├── mouse/ │ │ │ ├── move.js │ │ │ └── wheel.js │ │ ├── nav/ │ │ │ ├── getBulletLinkName.js │ │ │ ├── index.js │ │ │ ├── sections.js │ │ │ └── slides.js │ │ ├── normalScrollElements.js │ │ ├── optionsDefault.js │ │ ├── polyfills/ │ │ │ ├── array.find.js │ │ │ ├── array.foreach.js │ │ │ ├── array.from.js │ │ │ ├── index.js │ │ │ ├── object.assign.js │ │ │ └── string.padStart.js │ │ ├── resize.js │ │ ├── responsive.js │ │ ├── scroll/ │ │ │ ├── index.js │ │ │ ├── moveSectionDown.js │ │ │ ├── moveSectionUp.js │ │ │ ├── moveTo.js │ │ │ ├── scrollHandler.js │ │ │ ├── scrollPage.js │ │ │ ├── scrollPageAndSlide.js │ │ │ ├── scrollToAnchor.js │ │ │ ├── scrolling.js │ │ │ ├── setAllowScrolling.js │ │ │ ├── silentMove.js │ │ │ └── skipIntermediateItems.js │ │ ├── scrolloverflow.js │ │ ├── sections.js │ │ ├── slides/ │ │ │ ├── index.js │ │ │ ├── landscapeScroll.js │ │ │ ├── moveSlide.js │ │ │ ├── scrollSlider.js │ │ │ ├── silentLandscapeScroll.js │ │ │ └── styleSlides.js │ │ ├── speed.js │ │ ├── stateClasses.js │ │ ├── stateUpdates.js │ │ └── touch.js │ └── jsconfig.json ├── tests/ │ ├── index.html │ ├── unit/ │ │ ├── arrows.js │ │ ├── bigSectionsDestination.js │ │ ├── callbacks.js │ │ ├── callbacksV3.js │ │ ├── continuousVertical.js │ │ ├── destroy.js │ │ ├── displayWarnings.js │ │ ├── easingcss3.js │ │ ├── fitToSection.js │ │ ├── fixedElements.js │ │ ├── keyboardScrolling.js │ │ ├── lazyload.js │ │ ├── lockAnchors.js │ │ ├── loopBottom.js │ │ ├── loopTop.js │ │ ├── menu.js │ │ ├── moveSectionDown.js │ │ ├── moveSectionUp.js │ │ ├── moveSlideLeft.js │ │ ├── moveSlideRight.js │ │ ├── moveTo.js │ │ ├── nav.js │ │ ├── normalScrollElements.js │ │ ├── paddings.js │ │ ├── recordHistory.js │ │ ├── responsiveHeight.js │ │ ├── responsiveWidth.js │ │ ├── scrollBar.js │ │ ├── scrollingSpeed.js │ │ ├── sectionsColor.js │ │ ├── selectors.js │ │ ├── setAllowScrolling.js │ │ ├── setAutoScrolling.js │ │ ├── silentMoveTo.js │ │ ├── slidesNavigation.js │ │ └── verticalCentered.js │ └── utils.js ├── types/ │ └── index.d.ts └── vendors/ └── easings.js