├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── base.98fd6c19.css ├── demo1.151408fb.js ├── demo2.44794d1a.js ├── demo3.b516845c.js ├── favicon.26242483.ico ├── index.html ├── index2.html └── index3.html ├── package.json └── src ├── css └── base.css ├── favicon.ico ├── index.html ├── index2.html ├── index3.html └── js ├── demo1 ├── index.js └── intro.js ├── demo2 ├── index.js └── intro.js ├── demo3 ├── index.js └── intro.js └── utils.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /.cache 3 | package-lock.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/README.md -------------------------------------------------------------------------------- /dist/base.98fd6c19.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/dist/base.98fd6c19.css -------------------------------------------------------------------------------- /dist/demo1.151408fb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/dist/demo1.151408fb.js -------------------------------------------------------------------------------- /dist/demo2.44794d1a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/dist/demo2.44794d1a.js -------------------------------------------------------------------------------- /dist/demo3.b516845c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/dist/demo3.b516845c.js -------------------------------------------------------------------------------- /dist/favicon.26242483.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/dist/favicon.26242483.ico -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/dist/index2.html -------------------------------------------------------------------------------- /dist/index3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/dist/index3.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/package.json -------------------------------------------------------------------------------- /src/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/src/css/base.css -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/src/index2.html -------------------------------------------------------------------------------- /src/index3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/src/index3.html -------------------------------------------------------------------------------- /src/js/demo1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/src/js/demo1/index.js -------------------------------------------------------------------------------- /src/js/demo1/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/src/js/demo1/intro.js -------------------------------------------------------------------------------- /src/js/demo2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/src/js/demo2/index.js -------------------------------------------------------------------------------- /src/js/demo2/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/src/js/demo2/intro.js -------------------------------------------------------------------------------- /src/js/demo3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/src/js/demo3/index.js -------------------------------------------------------------------------------- /src/js/demo3/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/src/js/demo3/intro.js -------------------------------------------------------------------------------- /src/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/CircularTextEffect/HEAD/src/js/utils.js --------------------------------------------------------------------------------