├── .editorconfig ├── .gitignore ├── 3d-carousel.css ├── 3d-carousel.js ├── LICENSE ├── README.md ├── calendar.css ├── calendar.js ├── debog.js ├── debog.svg ├── draw-interactive-connection.js ├── favicon.svg ├── fortress.js ├── fortress.svg ├── index.html ├── kitt-like-lights.css ├── kitt-like-lights.js ├── marching-ants.js ├── media ├── back.svg ├── front.svg ├── left.svg └── right.svg ├── padlock.js ├── padlock.svg ├── search.js ├── search.svg ├── starfield.js ├── sun.svg ├── svg-morph.js ├── uidrafter-logo.js └── uidrafter-logo.svg /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /3d-carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/3d-carousel.css -------------------------------------------------------------------------------- /3d-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/3d-carousel.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/README.md -------------------------------------------------------------------------------- /calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/calendar.css -------------------------------------------------------------------------------- /calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/calendar.js -------------------------------------------------------------------------------- /debog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/debog.js -------------------------------------------------------------------------------- /debog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/debog.svg -------------------------------------------------------------------------------- /draw-interactive-connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/draw-interactive-connection.js -------------------------------------------------------------------------------- /favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/favicon.svg -------------------------------------------------------------------------------- /fortress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/fortress.js -------------------------------------------------------------------------------- /fortress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/fortress.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/index.html -------------------------------------------------------------------------------- /kitt-like-lights.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/kitt-like-lights.css -------------------------------------------------------------------------------- /kitt-like-lights.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/kitt-like-lights.js -------------------------------------------------------------------------------- /marching-ants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/marching-ants.js -------------------------------------------------------------------------------- /media/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/media/back.svg -------------------------------------------------------------------------------- /media/front.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/media/front.svg -------------------------------------------------------------------------------- /media/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/media/left.svg -------------------------------------------------------------------------------- /media/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/media/right.svg -------------------------------------------------------------------------------- /padlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/padlock.js -------------------------------------------------------------------------------- /padlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/padlock.svg -------------------------------------------------------------------------------- /search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/search.js -------------------------------------------------------------------------------- /search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/search.svg -------------------------------------------------------------------------------- /starfield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/starfield.js -------------------------------------------------------------------------------- /sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/sun.svg -------------------------------------------------------------------------------- /svg-morph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/svg-morph.js -------------------------------------------------------------------------------- /uidrafter-logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/uidrafter-logo.js -------------------------------------------------------------------------------- /uidrafter-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericfortis/web-animations/HEAD/uidrafter-logo.svg --------------------------------------------------------------------------------