├── .DS_Store ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── 1.dc197a9a.jpg ├── 2.3ca6bb44.jpg ├── demo1.ea7e4db3.css ├── demo1.ea7e4db3.css.map ├── demo1.ea7e4db3.js ├── demo1.ea7e4db3.js.map ├── demo2.06b37b5f.css ├── demo2.06b37b5f.css.map ├── demo2.06b37b5f.js ├── demo2.06b37b5f.js.map ├── demo3.f904c581.css ├── demo3.f904c581.css.map ├── demo3.f904c581.js ├── demo3.f904c581.js.map ├── demo4.7fb5a017.css ├── demo4.7fb5a017.css.map ├── demo4.7fb5a017.js ├── demo4.7fb5a017.js.map ├── favicon.26242483.ico ├── index.html ├── index2.242c2f2d.js ├── index2.242c2f2d.js.map ├── index2.html ├── index2.html.map ├── index2.js ├── index2.js.map ├── index3.02479077.js ├── index3.02479077.js.map ├── index3.html ├── index4.c87507a4.js ├── index4.c87507a4.js.map ├── index4.html ├── js.00a46daa.js ├── js.00a46daa.js.map ├── messapia-bold-webfont.3267b3d0.woff2 └── messapia-bold-webfont.6ddf630f.woff ├── package.json └── src ├── .DS_Store ├── .gitignore ├── css ├── demo1.css ├── demo2.css ├── demo3.css └── demo4.css ├── favicon.ico ├── fonts ├── messapia-bold-webfont.woff └── messapia-bold-webfont.woff2 ├── img ├── 1.jpg └── 2.jpg ├── index.html ├── index2.html ├── index3.html ├── index4.html └── js ├── cursor.js ├── cursor2.js ├── cursor3.js ├── cursor4.js ├── index.js ├── index2.js ├── index3.js ├── index4.js └── utils.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /.cache 3 | package-lock.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/README.md -------------------------------------------------------------------------------- /dist/1.dc197a9a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/1.dc197a9a.jpg -------------------------------------------------------------------------------- /dist/2.3ca6bb44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/2.3ca6bb44.jpg -------------------------------------------------------------------------------- /dist/demo1.ea7e4db3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/demo1.ea7e4db3.css -------------------------------------------------------------------------------- /dist/demo1.ea7e4db3.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/demo1.ea7e4db3.css.map -------------------------------------------------------------------------------- /dist/demo1.ea7e4db3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/demo1.ea7e4db3.js -------------------------------------------------------------------------------- /dist/demo1.ea7e4db3.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/demo1.ea7e4db3.js.map -------------------------------------------------------------------------------- /dist/demo2.06b37b5f.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/demo2.06b37b5f.css -------------------------------------------------------------------------------- /dist/demo2.06b37b5f.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/demo2.06b37b5f.css.map -------------------------------------------------------------------------------- /dist/demo2.06b37b5f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/demo2.06b37b5f.js -------------------------------------------------------------------------------- /dist/demo2.06b37b5f.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/demo2.06b37b5f.js.map -------------------------------------------------------------------------------- /dist/demo3.f904c581.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/demo3.f904c581.css -------------------------------------------------------------------------------- /dist/demo3.f904c581.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/demo3.f904c581.css.map -------------------------------------------------------------------------------- /dist/demo3.f904c581.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/demo3.f904c581.js -------------------------------------------------------------------------------- /dist/demo3.f904c581.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/demo3.f904c581.js.map -------------------------------------------------------------------------------- /dist/demo4.7fb5a017.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/demo4.7fb5a017.css -------------------------------------------------------------------------------- /dist/demo4.7fb5a017.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/demo4.7fb5a017.css.map -------------------------------------------------------------------------------- /dist/demo4.7fb5a017.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/demo4.7fb5a017.js -------------------------------------------------------------------------------- /dist/demo4.7fb5a017.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/demo4.7fb5a017.js.map -------------------------------------------------------------------------------- /dist/favicon.26242483.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/favicon.26242483.ico -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/index2.242c2f2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/index2.242c2f2d.js -------------------------------------------------------------------------------- /dist/index2.242c2f2d.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/index2.242c2f2d.js.map -------------------------------------------------------------------------------- /dist/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/index2.html -------------------------------------------------------------------------------- /dist/index2.html.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/index2.html.map -------------------------------------------------------------------------------- /dist/index2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/index2.js -------------------------------------------------------------------------------- /dist/index2.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/index2.js.map -------------------------------------------------------------------------------- /dist/index3.02479077.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/index3.02479077.js -------------------------------------------------------------------------------- /dist/index3.02479077.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/index3.02479077.js.map -------------------------------------------------------------------------------- /dist/index3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/index3.html -------------------------------------------------------------------------------- /dist/index4.c87507a4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/index4.c87507a4.js -------------------------------------------------------------------------------- /dist/index4.c87507a4.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/index4.c87507a4.js.map -------------------------------------------------------------------------------- /dist/index4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/index4.html -------------------------------------------------------------------------------- /dist/js.00a46daa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/js.00a46daa.js -------------------------------------------------------------------------------- /dist/js.00a46daa.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/js.00a46daa.js.map -------------------------------------------------------------------------------- /dist/messapia-bold-webfont.3267b3d0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/messapia-bold-webfont.3267b3d0.woff2 -------------------------------------------------------------------------------- /dist/messapia-bold-webfont.6ddf630f.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/dist/messapia-bold-webfont.6ddf630f.woff -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/package.json -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /.cache 3 | /dist 4 | package-lock.json -------------------------------------------------------------------------------- /src/css/demo1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/css/demo1.css -------------------------------------------------------------------------------- /src/css/demo2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/css/demo2.css -------------------------------------------------------------------------------- /src/css/demo3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/css/demo3.css -------------------------------------------------------------------------------- /src/css/demo4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/css/demo4.css -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/fonts/messapia-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/fonts/messapia-bold-webfont.woff -------------------------------------------------------------------------------- /src/fonts/messapia-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/fonts/messapia-bold-webfont.woff2 -------------------------------------------------------------------------------- /src/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/img/1.jpg -------------------------------------------------------------------------------- /src/img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/img/2.jpg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/index2.html -------------------------------------------------------------------------------- /src/index3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/index3.html -------------------------------------------------------------------------------- /src/index4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/index4.html -------------------------------------------------------------------------------- /src/js/cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/js/cursor.js -------------------------------------------------------------------------------- /src/js/cursor2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/js/cursor2.js -------------------------------------------------------------------------------- /src/js/cursor3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/js/cursor3.js -------------------------------------------------------------------------------- /src/js/cursor4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/js/cursor4.js -------------------------------------------------------------------------------- /src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/js/index.js -------------------------------------------------------------------------------- /src/js/index2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/js/index2.js -------------------------------------------------------------------------------- /src/js/index3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/js/index3.js -------------------------------------------------------------------------------- /src/js/index4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/js/index4.js -------------------------------------------------------------------------------- /src/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedCustomCursor/HEAD/src/js/utils.js --------------------------------------------------------------------------------