├── .git-blame-ignore-revs ├── .github ├── FUNDING.yml └── workflows │ └── release.yml ├── .gitignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src ├── app.html ├── global.d.ts ├── lib │ ├── createTransition.ts │ ├── index.ts │ ├── store.ts │ └── transition.ts └── routes │ ├── +layout.svelte │ ├── +layout.ts │ ├── +page.server.ts │ ├── +page.svelte │ ├── Example.svelte │ └── GitHub.svelte ├── static ├── favicon.png └── robots.txt ├── svelte.config.js ├── tsconfig.json └── vite.config.ts /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["esbenp.prettier-vscode"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/src/app.html -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/lib/createTransition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/src/lib/createTransition.ts -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/lib/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/src/lib/store.ts -------------------------------------------------------------------------------- /src/lib/transition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/src/lib/transition.ts -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+layout.ts: -------------------------------------------------------------------------------- 1 | export const prerender = true; 2 | -------------------------------------------------------------------------------- /src/routes/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/src/routes/+page.server.ts -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/routes/Example.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/src/routes/Example.svelte -------------------------------------------------------------------------------- /src/routes/GitHub.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/src/routes/GitHub.svelte -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostdevv/svelte-reduced-motion/HEAD/vite.config.ts --------------------------------------------------------------------------------