├── .DS_Store ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── css └── base.css ├── favicon.ico ├── img ├── bg.jpg └── noise.png ├── index.html ├── index2.html ├── index3.html ├── index4.html └── js ├── .DS_Store ├── effect-1 ├── .DS_Store ├── index.js └── text-animator.js ├── effect-2 ├── .DS_Store ├── index.js └── text-animator.js ├── effect-3 ├── .DS_Store ├── index.js └── text-animator.js ├── effect-4 ├── .DS_Store ├── index.js └── text-animator.js ├── gsap.min.js ├── split-type.min.js ├── textSplitter.js └── utils.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/README.md -------------------------------------------------------------------------------- /css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/css/base.css -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/favicon.ico -------------------------------------------------------------------------------- /img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/img/bg.jpg -------------------------------------------------------------------------------- /img/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/img/noise.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/index.html -------------------------------------------------------------------------------- /index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/index2.html -------------------------------------------------------------------------------- /index3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/index3.html -------------------------------------------------------------------------------- /index4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/index4.html -------------------------------------------------------------------------------- /js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/js/.DS_Store -------------------------------------------------------------------------------- /js/effect-1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/js/effect-1/.DS_Store -------------------------------------------------------------------------------- /js/effect-1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/js/effect-1/index.js -------------------------------------------------------------------------------- /js/effect-1/text-animator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/js/effect-1/text-animator.js -------------------------------------------------------------------------------- /js/effect-2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/js/effect-2/.DS_Store -------------------------------------------------------------------------------- /js/effect-2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/js/effect-2/index.js -------------------------------------------------------------------------------- /js/effect-2/text-animator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/js/effect-2/text-animator.js -------------------------------------------------------------------------------- /js/effect-3/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/js/effect-3/.DS_Store -------------------------------------------------------------------------------- /js/effect-3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/js/effect-3/index.js -------------------------------------------------------------------------------- /js/effect-3/text-animator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/js/effect-3/text-animator.js -------------------------------------------------------------------------------- /js/effect-4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/js/effect-4/.DS_Store -------------------------------------------------------------------------------- /js/effect-4/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/js/effect-4/index.js -------------------------------------------------------------------------------- /js/effect-4/text-animator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/js/effect-4/text-animator.js -------------------------------------------------------------------------------- /js/gsap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/js/gsap.min.js -------------------------------------------------------------------------------- /js/split-type.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/js/split-type.min.js -------------------------------------------------------------------------------- /js/textSplitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/js/textSplitter.js -------------------------------------------------------------------------------- /js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/LineTextHoverAnimations/HEAD/js/utils.js --------------------------------------------------------------------------------