├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .prettierignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LEARN.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── bundler ├── bundle.ps1 ├── bundle.sh └── config │ ├── package.json │ ├── postcss.config.js │ ├── rollup.config_css.mjs │ ├── rollup.config_css_full.mjs │ ├── rollup.config_css_min.mjs │ ├── rollup.config_js.mjs │ ├── rollup.config_js_min.mjs │ └── throw │ ├── rollup.config_full.mjs │ └── rollup.config_full_min.mjs ├── dev ├── index.html ├── jos.css ├── jos.js ├── jos.min.css └── jos.min.js ├── dist ├── .htaccess ├── jos.css ├── jos.debug.css ├── jos.debug.js ├── jos.js ├── jos.min.css ├── jos.min.js ├── v0.3 │ ├── jos.css │ └── jos.js ├── v0.5 │ ├── jos.css │ └── jos.js ├── v0.6 │ ├── jos.css │ ├── jos.debug.js │ ├── jos.debug.min.js │ ├── jos.js │ └── jos.min.js ├── v0.7 │ ├── .htaccess │ ├── jos.css │ ├── jos.debug.js │ ├── jos.dev.js │ ├── jos.js │ └── jos.min.js ├── v0.8.8 │ ├── .htaccess │ ├── jos.css │ ├── jos.debug.js │ ├── jos.js │ └── jos.min.js ├── v0.8 │ ├── .htaccess │ ├── jos.css │ ├── jos.debug.js │ ├── jos.js │ └── jos.min.js ├── v0.9.1 │ ├── .htaccess │ ├── jos.css │ ├── jos.debug.css │ ├── jos.debug.js │ ├── jos.js │ ├── jos.min.css │ └── jos.min.js ├── v0.9.2 │ ├── .htaccess │ ├── jos.css │ ├── jos.debug.css │ ├── jos.debug.js │ ├── jos.js │ ├── jos.min.css │ └── jos.min.js └── v0.9 │ ├── .htaccess │ ├── jos.css │ ├── jos.debug.css │ ├── jos.debug.js │ ├── jos.js │ ├── jos.min.css │ └── jos.min.js ├── docs ├── 404.html ├── index.html ├── index2.html ├── index3.html ├── indexOld.html └── style.css ├── package.json └── res ├── badge ├── jos_black_inverse.svg ├── jos_github default.svg ├── jos_github default_black.svg ├── jos_inside_logo_black.svg ├── jos_inside_logo_white.svg ├── jos_plain_black.svg ├── jos_plain_white.svg └── jos_white_inverse.svg ├── favicon ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico └── site.webmanifest └── logo ├── jos_animation.png ├── jos_black.svg ├── jos_default_black.png ├── jos_default_black.svg ├── jos_default_transparent.svg ├── jos_default_transparent_black.png ├── jos_default_transparent_black.svg ├── jos_default_white.svg ├── jos_full_black.svg ├── jos_full_white.png ├── jos_full_white.svg └── jos_white.svg /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/.prettierignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LEARN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/LEARN.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bundler/bundle.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/bundler/bundle.ps1 -------------------------------------------------------------------------------- /bundler/bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/bundler/bundle.sh -------------------------------------------------------------------------------- /bundler/config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/bundler/config/package.json -------------------------------------------------------------------------------- /bundler/config/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/bundler/config/postcss.config.js -------------------------------------------------------------------------------- /bundler/config/rollup.config_css.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/bundler/config/rollup.config_css.mjs -------------------------------------------------------------------------------- /bundler/config/rollup.config_css_full.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/bundler/config/rollup.config_css_full.mjs -------------------------------------------------------------------------------- /bundler/config/rollup.config_css_min.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/bundler/config/rollup.config_css_min.mjs -------------------------------------------------------------------------------- /bundler/config/rollup.config_js.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/bundler/config/rollup.config_js.mjs -------------------------------------------------------------------------------- /bundler/config/rollup.config_js_min.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/bundler/config/rollup.config_js_min.mjs -------------------------------------------------------------------------------- /bundler/config/throw/rollup.config_full.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/bundler/config/throw/rollup.config_full.mjs -------------------------------------------------------------------------------- /bundler/config/throw/rollup.config_full_min.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/bundler/config/throw/rollup.config_full_min.mjs -------------------------------------------------------------------------------- /dev/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dev/index.html -------------------------------------------------------------------------------- /dev/jos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dev/jos.css -------------------------------------------------------------------------------- /dev/jos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dev/jos.js -------------------------------------------------------------------------------- /dev/jos.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dev/jos.min.css -------------------------------------------------------------------------------- /dev/jos.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dev/jos.min.js -------------------------------------------------------------------------------- /dist/.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/jos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/jos.css -------------------------------------------------------------------------------- /dist/jos.debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/jos.debug.css -------------------------------------------------------------------------------- /dist/jos.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/jos.debug.js -------------------------------------------------------------------------------- /dist/jos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/jos.js -------------------------------------------------------------------------------- /dist/jos.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/jos.min.css -------------------------------------------------------------------------------- /dist/jos.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/jos.min.js -------------------------------------------------------------------------------- /dist/v0.3/jos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.3/jos.css -------------------------------------------------------------------------------- /dist/v0.3/jos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.3/jos.js -------------------------------------------------------------------------------- /dist/v0.5/jos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.5/jos.css -------------------------------------------------------------------------------- /dist/v0.5/jos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.5/jos.js -------------------------------------------------------------------------------- /dist/v0.6/jos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.6/jos.css -------------------------------------------------------------------------------- /dist/v0.6/jos.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.6/jos.debug.js -------------------------------------------------------------------------------- /dist/v0.6/jos.debug.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.6/jos.debug.min.js -------------------------------------------------------------------------------- /dist/v0.6/jos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.6/jos.js -------------------------------------------------------------------------------- /dist/v0.6/jos.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.6/jos.min.js -------------------------------------------------------------------------------- /dist/v0.7/.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/v0.7/jos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.7/jos.css -------------------------------------------------------------------------------- /dist/v0.7/jos.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.7/jos.debug.js -------------------------------------------------------------------------------- /dist/v0.7/jos.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.7/jos.dev.js -------------------------------------------------------------------------------- /dist/v0.7/jos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.7/jos.js -------------------------------------------------------------------------------- /dist/v0.7/jos.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.7/jos.min.js -------------------------------------------------------------------------------- /dist/v0.8.8/.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/v0.8.8/jos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.8.8/jos.css -------------------------------------------------------------------------------- /dist/v0.8.8/jos.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.8.8/jos.debug.js -------------------------------------------------------------------------------- /dist/v0.8.8/jos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.8.8/jos.js -------------------------------------------------------------------------------- /dist/v0.8.8/jos.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.8.8/jos.min.js -------------------------------------------------------------------------------- /dist/v0.8/.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/v0.8/jos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.8/jos.css -------------------------------------------------------------------------------- /dist/v0.8/jos.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.8/jos.debug.js -------------------------------------------------------------------------------- /dist/v0.8/jos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.8/jos.js -------------------------------------------------------------------------------- /dist/v0.8/jos.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.8/jos.min.js -------------------------------------------------------------------------------- /dist/v0.9.1/.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/v0.9.1/jos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.9.1/jos.css -------------------------------------------------------------------------------- /dist/v0.9.1/jos.debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.9.1/jos.debug.css -------------------------------------------------------------------------------- /dist/v0.9.1/jos.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.9.1/jos.debug.js -------------------------------------------------------------------------------- /dist/v0.9.1/jos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.9.1/jos.js -------------------------------------------------------------------------------- /dist/v0.9.1/jos.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.9.1/jos.min.css -------------------------------------------------------------------------------- /dist/v0.9.1/jos.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.9.1/jos.min.js -------------------------------------------------------------------------------- /dist/v0.9.2/.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/v0.9.2/jos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.9.2/jos.css -------------------------------------------------------------------------------- /dist/v0.9.2/jos.debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.9.2/jos.debug.css -------------------------------------------------------------------------------- /dist/v0.9.2/jos.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.9.2/jos.debug.js -------------------------------------------------------------------------------- /dist/v0.9.2/jos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.9.2/jos.js -------------------------------------------------------------------------------- /dist/v0.9.2/jos.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.9.2/jos.min.css -------------------------------------------------------------------------------- /dist/v0.9.2/jos.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.9.2/jos.min.js -------------------------------------------------------------------------------- /dist/v0.9/.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/v0.9/jos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.9/jos.css -------------------------------------------------------------------------------- /dist/v0.9/jos.debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.9/jos.debug.css -------------------------------------------------------------------------------- /dist/v0.9/jos.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.9/jos.debug.js -------------------------------------------------------------------------------- /dist/v0.9/jos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.9/jos.js -------------------------------------------------------------------------------- /dist/v0.9/jos.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.9/jos.min.css -------------------------------------------------------------------------------- /dist/v0.9/jos.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/dist/v0.9/jos.min.js -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/docs/index2.html -------------------------------------------------------------------------------- /docs/index3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/docs/index3.html -------------------------------------------------------------------------------- /docs/indexOld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/docs/indexOld.html -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/docs/style.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/package.json -------------------------------------------------------------------------------- /res/badge/jos_black_inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/badge/jos_black_inverse.svg -------------------------------------------------------------------------------- /res/badge/jos_github default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/badge/jos_github default.svg -------------------------------------------------------------------------------- /res/badge/jos_github default_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/badge/jos_github default_black.svg -------------------------------------------------------------------------------- /res/badge/jos_inside_logo_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/badge/jos_inside_logo_black.svg -------------------------------------------------------------------------------- /res/badge/jos_inside_logo_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/badge/jos_inside_logo_white.svg -------------------------------------------------------------------------------- /res/badge/jos_plain_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/badge/jos_plain_black.svg -------------------------------------------------------------------------------- /res/badge/jos_plain_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/badge/jos_plain_white.svg -------------------------------------------------------------------------------- /res/badge/jos_white_inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/badge/jos_white_inverse.svg -------------------------------------------------------------------------------- /res/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /res/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /res/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /res/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /res/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /res/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/favicon/favicon.ico -------------------------------------------------------------------------------- /res/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/favicon/site.webmanifest -------------------------------------------------------------------------------- /res/logo/jos_animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/logo/jos_animation.png -------------------------------------------------------------------------------- /res/logo/jos_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/logo/jos_black.svg -------------------------------------------------------------------------------- /res/logo/jos_default_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/logo/jos_default_black.png -------------------------------------------------------------------------------- /res/logo/jos_default_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/logo/jos_default_black.svg -------------------------------------------------------------------------------- /res/logo/jos_default_transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/logo/jos_default_transparent.svg -------------------------------------------------------------------------------- /res/logo/jos_default_transparent_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/logo/jos_default_transparent_black.png -------------------------------------------------------------------------------- /res/logo/jos_default_transparent_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/logo/jos_default_transparent_black.svg -------------------------------------------------------------------------------- /res/logo/jos_default_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/logo/jos_default_white.svg -------------------------------------------------------------------------------- /res/logo/jos_full_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/logo/jos_full_black.svg -------------------------------------------------------------------------------- /res/logo/jos_full_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/logo/jos_full_white.png -------------------------------------------------------------------------------- /res/logo/jos_full_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/logo/jos_full_white.svg -------------------------------------------------------------------------------- /res/logo/jos_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesvijonathan/JOS-Animation-Library/HEAD/res/logo/jos_white.svg --------------------------------------------------------------------------------