├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ ├── pullRequest.yml │ └── releaseCreated.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json ├── src └── index.ts ├── tsconfig.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- 1 | /dist -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemehovskiy/parallax-background/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/pullRequest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemehovskiy/parallax-background/HEAD/.github/workflows/pullRequest.yml -------------------------------------------------------------------------------- /.github/workflows/releaseCreated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemehovskiy/parallax-background/HEAD/.github/workflows/releaseCreated.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/node_modules 2 | .idea 3 | .DS_Store 4 | .vscode 5 | /dist 6 | 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemehovskiy/parallax-background/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemehovskiy/parallax-background/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemehovskiy/parallax-background/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemehovskiy/parallax-background/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemehovskiy/parallax-background/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemehovskiy/parallax-background/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemehovskiy/parallax-background/HEAD/vite.config.ts --------------------------------------------------------------------------------