├── .gitignore ├── LICENSE ├── README.md ├── compile.js ├── dist └── microjs │ └── fat.compact.js ├── docs ├── background.png ├── fat.custom.10ba8.js ├── fat_logo_dark.svg ├── fat_logo_white.svg ├── icon.png ├── index.html ├── main.js ├── poster.png └── style.css ├── fat.compact.js ├── fat.js ├── fat.light.js ├── fat.min.js ├── package.json └── test ├── color.html ├── concurrency.html ├── control.html ├── cube.html ├── custom.html ├── delay.html ├── easing.html ├── filter.html ├── force.html ├── init.html ├── keyframes.html ├── loop.html ├── presets.html ├── scene.html ├── scroll.html ├── sequence.html ├── shadow.html ├── strict.html ├── svg.html ├── transform.html ├── units.html └── update.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | !*.keep 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/README.md -------------------------------------------------------------------------------- /compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/compile.js -------------------------------------------------------------------------------- /dist/microjs/fat.compact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/dist/microjs/fat.compact.js -------------------------------------------------------------------------------- /docs/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/docs/background.png -------------------------------------------------------------------------------- /docs/fat.custom.10ba8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/docs/fat.custom.10ba8.js -------------------------------------------------------------------------------- /docs/fat_logo_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/docs/fat_logo_dark.svg -------------------------------------------------------------------------------- /docs/fat_logo_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/docs/fat_logo_white.svg -------------------------------------------------------------------------------- /docs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/docs/icon.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/docs/main.js -------------------------------------------------------------------------------- /docs/poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/docs/poster.png -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/docs/style.css -------------------------------------------------------------------------------- /fat.compact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/fat.compact.js -------------------------------------------------------------------------------- /fat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/fat.js -------------------------------------------------------------------------------- /fat.light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/fat.light.js -------------------------------------------------------------------------------- /fat.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/fat.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/package.json -------------------------------------------------------------------------------- /test/color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/color.html -------------------------------------------------------------------------------- /test/concurrency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/concurrency.html -------------------------------------------------------------------------------- /test/control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/control.html -------------------------------------------------------------------------------- /test/cube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/cube.html -------------------------------------------------------------------------------- /test/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/custom.html -------------------------------------------------------------------------------- /test/delay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/delay.html -------------------------------------------------------------------------------- /test/easing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/easing.html -------------------------------------------------------------------------------- /test/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/filter.html -------------------------------------------------------------------------------- /test/force.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/force.html -------------------------------------------------------------------------------- /test/init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/init.html -------------------------------------------------------------------------------- /test/keyframes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/keyframes.html -------------------------------------------------------------------------------- /test/loop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/loop.html -------------------------------------------------------------------------------- /test/presets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/presets.html -------------------------------------------------------------------------------- /test/scene.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/scene.html -------------------------------------------------------------------------------- /test/scroll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/scroll.html -------------------------------------------------------------------------------- /test/sequence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/sequence.html -------------------------------------------------------------------------------- /test/shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/shadow.html -------------------------------------------------------------------------------- /test/strict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/strict.html -------------------------------------------------------------------------------- /test/svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/svg.html -------------------------------------------------------------------------------- /test/transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/transform.html -------------------------------------------------------------------------------- /test/units.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/units.html -------------------------------------------------------------------------------- /test/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextapps-de/fat/HEAD/test/update.html --------------------------------------------------------------------------------