├── .gitignore ├── LawsOfMotion.pdf ├── examples ├── complex.html ├── sequential.html └── simple.html ├── morphr.gif ├── morphr.js ├── morphr.min.js ├── morphr2.gif ├── package.json └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | node_modules -------------------------------------------------------------------------------- /LawsOfMotion.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goessner/morphr/HEAD/LawsOfMotion.pdf -------------------------------------------------------------------------------- /examples/complex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goessner/morphr/HEAD/examples/complex.html -------------------------------------------------------------------------------- /examples/sequential.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goessner/morphr/HEAD/examples/sequential.html -------------------------------------------------------------------------------- /examples/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goessner/morphr/HEAD/examples/simple.html -------------------------------------------------------------------------------- /morphr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goessner/morphr/HEAD/morphr.gif -------------------------------------------------------------------------------- /morphr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goessner/morphr/HEAD/morphr.js -------------------------------------------------------------------------------- /morphr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goessner/morphr/HEAD/morphr.min.js -------------------------------------------------------------------------------- /morphr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goessner/morphr/HEAD/morphr2.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goessner/morphr/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goessner/morphr/HEAD/readme.md --------------------------------------------------------------------------------