├── .all-contributorsrc ├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── CNAME ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE.md ├── README.md ├── css └── main.css ├── index.html ├── js ├── alphabet.js ├── main.js └── modernizr-1.5.min.js └── package.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suriyaa/animate-a-name/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: suriyaa 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suriyaa/animate-a-name/HEAD/.travis.yml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | animate-a-name.tk -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suriyaa/animate-a-name/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suriyaa/animate-a-name/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suriyaa/animate-a-name/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suriyaa/animate-a-name/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suriyaa/animate-a-name/HEAD/README.md -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suriyaa/animate-a-name/HEAD/css/main.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suriyaa/animate-a-name/HEAD/index.html -------------------------------------------------------------------------------- /js/alphabet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suriyaa/animate-a-name/HEAD/js/alphabet.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suriyaa/animate-a-name/HEAD/js/main.js -------------------------------------------------------------------------------- /js/modernizr-1.5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suriyaa/animate-a-name/HEAD/js/modernizr-1.5.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suriyaa/animate-a-name/HEAD/package.json --------------------------------------------------------------------------------