├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── 1.1770e3b3.jpg ├── 2.07ca36b5.jpg ├── 3.f6f48295.jpg ├── favicon.a64e97b2.ico ├── index.b5e7c14d.js ├── index.d73f7ad5.css ├── index.e9a2d1b4.js ├── index.html └── shadow.f3dc3bb9.png ├── package.json └── src ├── css └── base.css ├── favicon.ico ├── img ├── 1.jpg ├── 2.jpg ├── 3.jpg └── shadow.png ├── index.html └── js ├── fakeProgress.js ├── gsapAnimation.js ├── index.js ├── textLinesReveal.js ├── trail.js └── utils.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/README.md -------------------------------------------------------------------------------- /dist/1.1770e3b3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/dist/1.1770e3b3.jpg -------------------------------------------------------------------------------- /dist/2.07ca36b5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/dist/2.07ca36b5.jpg -------------------------------------------------------------------------------- /dist/3.f6f48295.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/dist/3.f6f48295.jpg -------------------------------------------------------------------------------- /dist/favicon.a64e97b2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/dist/favicon.a64e97b2.ico -------------------------------------------------------------------------------- /dist/index.b5e7c14d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/dist/index.b5e7c14d.js -------------------------------------------------------------------------------- /dist/index.d73f7ad5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/dist/index.d73f7ad5.css -------------------------------------------------------------------------------- /dist/index.e9a2d1b4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/dist/index.e9a2d1b4.js -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/shadow.f3dc3bb9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/dist/shadow.f3dc3bb9.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/package.json -------------------------------------------------------------------------------- /src/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/src/css/base.css -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/src/img/1.jpg -------------------------------------------------------------------------------- /src/img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/src/img/2.jpg -------------------------------------------------------------------------------- /src/img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/src/img/3.jpg -------------------------------------------------------------------------------- /src/img/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/src/img/shadow.png -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/src/index.html -------------------------------------------------------------------------------- /src/js/fakeProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/src/js/fakeProgress.js -------------------------------------------------------------------------------- /src/js/gsapAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/src/js/gsapAnimation.js -------------------------------------------------------------------------------- /src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/src/js/index.js -------------------------------------------------------------------------------- /src/js/textLinesReveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/src/js/textLinesReveal.js -------------------------------------------------------------------------------- /src/js/trail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/src/js/trail.js -------------------------------------------------------------------------------- /src/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/IntroTrailEffect/HEAD/src/js/utils.js --------------------------------------------------------------------------------