├── .gitignore ├── .npmrc ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src ├── app.css ├── app.d.ts ├── app.html ├── lib │ ├── data │ │ └── planets.json │ └── utils.ts └── routes │ ├── +layout.svelte │ ├── +layout.ts │ ├── +page.svelte │ ├── about │ └── +page.svelte │ ├── explore │ └── +page.svelte │ ├── flights │ └── +page.svelte │ ├── header.svelte │ ├── navigation.svelte │ └── planets │ └── [planet] │ ├── +page.svelte │ ├── button.svelte │ ├── check.svelte │ └── loading.svelte ├── static ├── favicon.png └── images │ ├── earth.png │ ├── jupiter.png │ ├── mars.png │ ├── mercury.png │ ├── moon.png │ ├── neptune.png │ ├── saturn.png │ ├── stars.jpg │ ├── uranus.png │ └── venus.png ├── svelte.config.js ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | resolution-mode=highest 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/src/app.html -------------------------------------------------------------------------------- /src/lib/data/planets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/src/lib/data/planets.json -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/src/routes/+layout.ts -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/routes/about/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/src/routes/about/+page.svelte -------------------------------------------------------------------------------- /src/routes/explore/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/src/routes/explore/+page.svelte -------------------------------------------------------------------------------- /src/routes/flights/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/src/routes/flights/+page.svelte -------------------------------------------------------------------------------- /src/routes/header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/src/routes/header.svelte -------------------------------------------------------------------------------- /src/routes/navigation.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/src/routes/navigation.svelte -------------------------------------------------------------------------------- /src/routes/planets/[planet]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/src/routes/planets/[planet]/+page.svelte -------------------------------------------------------------------------------- /src/routes/planets/[planet]/button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/src/routes/planets/[planet]/button.svelte -------------------------------------------------------------------------------- /src/routes/planets/[planet]/check.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/src/routes/planets/[planet]/check.svelte -------------------------------------------------------------------------------- /src/routes/planets/[planet]/loading.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/src/routes/planets/[planet]/loading.svelte -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/images/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/static/images/earth.png -------------------------------------------------------------------------------- /static/images/jupiter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/static/images/jupiter.png -------------------------------------------------------------------------------- /static/images/mars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/static/images/mars.png -------------------------------------------------------------------------------- /static/images/mercury.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/static/images/mercury.png -------------------------------------------------------------------------------- /static/images/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/static/images/moon.png -------------------------------------------------------------------------------- /static/images/neptune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/static/images/neptune.png -------------------------------------------------------------------------------- /static/images/saturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/static/images/saturn.png -------------------------------------------------------------------------------- /static/images/stars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/static/images/stars.jpg -------------------------------------------------------------------------------- /static/images/uranus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/static/images/uranus.png -------------------------------------------------------------------------------- /static/images/venus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/static/images/venus.png -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joysofcode/sveltekit-view-transitions/HEAD/vite.config.ts --------------------------------------------------------------------------------