├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── lib └── scroll-through-time.js ├── menus └── scroll-through-time.json ├── package.json └── screencast.gif /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/scroll-through-time/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/scroll-through-time/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/scroll-through-time/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/scroll-through-time/HEAD/README.md -------------------------------------------------------------------------------- /lib/scroll-through-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/scroll-through-time/HEAD/lib/scroll-through-time.js -------------------------------------------------------------------------------- /menus/scroll-through-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/scroll-through-time/HEAD/menus/scroll-through-time.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/scroll-through-time/HEAD/package.json -------------------------------------------------------------------------------- /screencast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/scroll-through-time/HEAD/screencast.gif --------------------------------------------------------------------------------