├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── css └── base.css ├── dist ├── 1.d5d0bbe2.jpg ├── 2.b0539b47.jpg ├── 3.caf4bd5d.jpg ├── 4.563dcc99.jpg ├── 5.1c2ed3fb.jpg ├── 6.df718cc7.jpg ├── 7.fd69eac9.jpg ├── 8.e174b0a5.jpg ├── base.0b18b771.css ├── big1.0ab44b73.jpg ├── big2.839b2789.jpg ├── favicon.2e5f6236.ico ├── index.html └── js.c39dff1f.js ├── favicon.ico ├── img ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── 8.jpg ├── big1.jpg └── big2.jpg ├── index.html ├── js ├── index.js ├── mathUtils.js ├── textOnPath.js └── winsize.js └── package.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .cache 3 | .DS_Store 4 | package-lock.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/README.md -------------------------------------------------------------------------------- /css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/css/base.css -------------------------------------------------------------------------------- /dist/1.d5d0bbe2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/dist/1.d5d0bbe2.jpg -------------------------------------------------------------------------------- /dist/2.b0539b47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/dist/2.b0539b47.jpg -------------------------------------------------------------------------------- /dist/3.caf4bd5d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/dist/3.caf4bd5d.jpg -------------------------------------------------------------------------------- /dist/4.563dcc99.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/dist/4.563dcc99.jpg -------------------------------------------------------------------------------- /dist/5.1c2ed3fb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/dist/5.1c2ed3fb.jpg -------------------------------------------------------------------------------- /dist/6.df718cc7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/dist/6.df718cc7.jpg -------------------------------------------------------------------------------- /dist/7.fd69eac9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/dist/7.fd69eac9.jpg -------------------------------------------------------------------------------- /dist/8.e174b0a5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/dist/8.e174b0a5.jpg -------------------------------------------------------------------------------- /dist/base.0b18b771.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/dist/base.0b18b771.css -------------------------------------------------------------------------------- /dist/big1.0ab44b73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/dist/big1.0ab44b73.jpg -------------------------------------------------------------------------------- /dist/big2.839b2789.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/dist/big2.839b2789.jpg -------------------------------------------------------------------------------- /dist/favicon.2e5f6236.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/dist/favicon.2e5f6236.ico -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/js.c39dff1f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/dist/js.c39dff1f.js -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/favicon.ico -------------------------------------------------------------------------------- /img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/img/1.jpg -------------------------------------------------------------------------------- /img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/img/2.jpg -------------------------------------------------------------------------------- /img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/img/3.jpg -------------------------------------------------------------------------------- /img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/img/4.jpg -------------------------------------------------------------------------------- /img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/img/5.jpg -------------------------------------------------------------------------------- /img/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/img/6.jpg -------------------------------------------------------------------------------- /img/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/img/7.jpg -------------------------------------------------------------------------------- /img/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/img/8.jpg -------------------------------------------------------------------------------- /img/big1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/img/big1.jpg -------------------------------------------------------------------------------- /img/big2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/img/big2.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/index.html -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/js/index.js -------------------------------------------------------------------------------- /js/mathUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/js/mathUtils.js -------------------------------------------------------------------------------- /js/textOnPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/js/textOnPath.js -------------------------------------------------------------------------------- /js/winsize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/js/winsize.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimateSVGTextPath/HEAD/package.json --------------------------------------------------------------------------------