├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── css └── base.css ├── favicon.ico ├── img ├── bg1.jpg ├── bg2.jpg ├── bg3.jpg ├── bg4.jpg ├── bg5.jpg ├── bg6.jpg ├── bg7.jpg └── bg8.jpg ├── index.html ├── index2.html ├── index3.html ├── index4.html ├── index5.html ├── index6.html ├── index7.html ├── index8.html └── js ├── cursor.js ├── gsap.min.js ├── index.js └── utils.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/README.md -------------------------------------------------------------------------------- /css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/css/base.css -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/favicon.ico -------------------------------------------------------------------------------- /img/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/img/bg1.jpg -------------------------------------------------------------------------------- /img/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/img/bg2.jpg -------------------------------------------------------------------------------- /img/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/img/bg3.jpg -------------------------------------------------------------------------------- /img/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/img/bg4.jpg -------------------------------------------------------------------------------- /img/bg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/img/bg5.jpg -------------------------------------------------------------------------------- /img/bg6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/img/bg6.jpg -------------------------------------------------------------------------------- /img/bg7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/img/bg7.jpg -------------------------------------------------------------------------------- /img/bg8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/img/bg8.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/index.html -------------------------------------------------------------------------------- /index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/index2.html -------------------------------------------------------------------------------- /index3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/index3.html -------------------------------------------------------------------------------- /index4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/index4.html -------------------------------------------------------------------------------- /index5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/index5.html -------------------------------------------------------------------------------- /index6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/index6.html -------------------------------------------------------------------------------- /index7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/index7.html -------------------------------------------------------------------------------- /index8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/index8.html -------------------------------------------------------------------------------- /js/cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/js/cursor.js -------------------------------------------------------------------------------- /js/gsap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/js/gsap.min.js -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/js/index.js -------------------------------------------------------------------------------- /js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/GooeyCursor/HEAD/js/utils.js --------------------------------------------------------------------------------