Skip to content

Commit

Permalink
replace placeholder images with ones that work
Browse files Browse the repository at this point in the history
  • Loading branch information
KTibow authored Aug 6, 2024
1 parent 952d28c commit 47c831d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions src/routes/transitions/shared-axis-x/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<Button type="outlined" on:click={() => ((prevPage = page), (page = 1))}>next</Button>
</p>
<img
src="https://source.unsplash.com/192x168/?red"
src="https://picsum.photos/id/12/192/168"
alt="Red placeholder"
width="192"
height="168"
Expand All @@ -35,7 +35,7 @@
<Button type="outlined" on:click={() => ((prevPage = page), (page = 2))}>next</Button>
</p>
<img
src="https://source.unsplash.com/192x168/?orange"
src="https://picsum.photos/id/20/192/168"
alt="Orange placeholder"
width="192"
height="168"
Expand All @@ -57,7 +57,7 @@
<Button type="outlined" on:click={() => ((prevPage = page), (page = 3))}>next</Button>
</p>
<img
src="https://source.unsplash.com/192x168/?yellow"
src="https://picsum.photos/id/19/192/168"
alt="Yellow placeholder"
width="192"
height="168"
Expand All @@ -69,7 +69,7 @@
<Button type="outlined" on:click={() => ((prevPage = page), (page = 2))}>back</Button>
</p>
<img
src="https://source.unsplash.com/192x168/?green"
src="https://picsum.photos/id/18/192/168"
alt="Green placeholder"
width="192"
height="168"
Expand Down
8 changes: 4 additions & 4 deletions src/routes/transitions/shared-axis-y/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<Button type="outlined" on:click={() => ((prevPage = page), (page = 1))}>next</Button>
</p>
<img
src="https://source.unsplash.com/192x168/?red"
src="https://picsum.photos/id/12/192/168"
alt="Red placeholder"
width="192"
height="168"
Expand All @@ -35,7 +35,7 @@
<Button type="outlined" on:click={() => ((prevPage = page), (page = 2))}>next</Button>
</p>
<img
src="https://source.unsplash.com/192x168/?orange"
src="https://picsum.photos/id/20/192/168"
alt="Orange placeholder"
width="192"
height="168"
Expand All @@ -57,7 +57,7 @@
<Button type="outlined" on:click={() => ((prevPage = page), (page = 3))}>next</Button>
</p>
<img
src="https://source.unsplash.com/192x168/?yellow"
src="https://picsum.photos/id/19/192/168"
alt="Yellow placeholder"
width="192"
height="168"
Expand All @@ -69,7 +69,7 @@
<Button type="outlined" on:click={() => ((prevPage = page), (page = 2))}>back</Button>
</p>
<img
src="https://source.unsplash.com/192x168/?green"
src="https://picsum.photos/id/18/192/168"
alt="Green placeholder"
width="192"
height="168"
Expand Down
8 changes: 4 additions & 4 deletions src/routes/transitions/shared-axis-z/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<Button type="outlined" on:click={() => (page = 1)}>next</Button>
</p>
<img
src="https://source.unsplash.com/192x168/?red"
src="https://picsum.photos/id/12/192/168"
alt="Red placeholder"
width="192"
height="168"
Expand All @@ -31,7 +31,7 @@
<Button type="outlined" on:click={() => (page = 2)}>next</Button>
</p>
<img
src="https://source.unsplash.com/192x168/?orange"
src="https://picsum.photos/id/20/192/168"
alt="Orange placeholder"
width="192"
height="168"
Expand All @@ -47,7 +47,7 @@
<Button type="outlined" on:click={() => (page = 3)}>next</Button>
</p>
<img
src="https://source.unsplash.com/192x168/?yellow"
src="https://picsum.photos/id/19/192/168"
alt="Yellow placeholder"
width="192"
height="168"
Expand All @@ -62,7 +62,7 @@
<Button type="outlined" on:click={() => (page = 2)}>back</Button>
</p>
<img
src="https://source.unsplash.com/192x168/?green"
src="https://picsum.photos/id/18/192/168"
alt="Green placeholder"
width="192"
height="168"
Expand Down

0 comments on commit 47c831d

Please sign in to comment.