Skip to content

Commit 2f8d02f

Browse files
committed
update github links
1 parent 2b40b95 commit 2f8d02f

File tree

3 files changed

+83
-4
lines changed
  • apps/codingcatdev/src/routes/(content-single)/(non-course)/podcast

3 files changed

+83
-4
lines changed

apps/codingcatdev/src/routes/(content-single)/(non-course)/podcast/cwcc-1-2-meltui/+page.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ title: 'Open Source Svelte Magic: Melting Minds through Melt UI!'
2727
youtube: 'https://youtube.com/live/Crlo-Qfu6qs?feature=share'
2828
---
2929

30-
[GitHub Repo of Example](https://github.com/CodingCatDev/code-with-codingcat-meltui)
30+
<script>
31+
import OpenIn from '$lib/components/content/OpenIn.svelte'
32+
</script>
33+
34+
<OpenIn url="https://github.com/CodingCatDev/code-with-codingcat-meltui" />
3135

3236
Melt UI is an open-source collection of component builders designed for creating user interfaces with the Svelte framework. It stands out for its accessibility and customization features, enabling developers to build user interfaces that are both accessible and uniquely styled. Here are some key aspects of Melt UI:
3337

apps/codingcatdev/src/routes/(content-single)/(non-course)/podcast/cwcc-1-3-svelte-view-transitions/+page.md

+72-3
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,77 @@ title: Simplyfing SvelteKit View Transitions with Paolo Ricciuti
2828
youtube: 'https://youtube.com/live/A6WwrGFMQio?feature=share'
2929
---
3030

31-
# View Transitions
31+
<script>
32+
import OpenIn from '$lib/components/content/OpenIn.svelte'
33+
</script>
3234

33-
Repo: https://github.com/CodingCatDev/svelte-view-transitions-pokemon
35+
<OpenIn url="https://github.com/CodingCatDev/svelte-view-transitions-pokemon" />
3436

35-
Library: https://github.com/paoloricciuti/sveltekit-view-transition
37+
**SvelteKit View Transitions: A Guide to Enhancing User Experience**
38+
39+
[SvelteKit View transitions](https://github.com/paoloricciuti/sveltekit-view-transition) are a powerful tool that can be used to improve the user experience of your SvelteKit applications. They can make your app feel more polished and professional, and they can also help to guide users through your app's content.
40+
41+
This blog post will discuss what view transitions are, how they can be used, and how to set up and use the sveltekit-view-transition library.
42+
43+
**What are view transitions?**
44+
45+
View transitions are animations that occur when a user navigates between different views in your app. They can be simple fades or more complex animations that involve multiple elements.
46+
47+
**Why use view transitions?**
48+
49+
There are several reasons why you might want to use view transitions in your SvelteKit app:
50+
51+
- **Improve the user experience:** View transitions can make your app feel more polished and professional. They can also help to guide users through your app's content by making it clear when a new view is loading.
52+
- **Reduce perceived load times:** By using view transitions, you can mask the loading time of new views, making your app feel faster and more responsive.
53+
- **Create a more engaging experience:** View transitions can add a touch of personality to your app and make it more engaging for users.
54+
55+
**How to use view transitions in SvelteKit**
56+
57+
There are two main ways to use view transitions in SvelteKit:
58+
59+
1. **Using the sveltekit-view-transition library:** The sveltekit-view-transition library is a popular library that makes it easy to add view transitions to your SvelteKit app. The library provides a number of pre-built transitions, and you can also create your own custom transitions.
60+
2. **Using Svelte's built-in transition API:** Svelte also has a built-in transition API that you can use to create view transitions. The transition API is more flexible than the sveltekit-view-transition library, but it also requires more code.
61+
62+
**Setting up the sveltekit-view-transition library**
63+
64+
To set up the sveltekit-view-transition library, you can add the following to your `package.json` file:
65+
66+
```json
67+
"dependencies": {
68+
"sveltekit-view-transition": "^1.0.0"
69+
}
70+
```
71+
72+
Once you have installed the library, you can import it into your `app.js` file:
73+
74+
```javascript
75+
import ViewTransition from 'sveltekit-view-transition';
76+
77+
export default {
78+
extensions: [ViewTransition]
79+
};
80+
```
81+
82+
**Using view transitions in your components**
83+
84+
You can use view transitions in your Svelte components by using the `<ViewTransition>` component. The `<ViewTransition>` component takes a number of props, including:
85+
86+
- `mode`: The type of transition to use. The sveltekit-view-transition library provides a number of pre-built transitions, such as `fade`, `slide`, and `zoom`.
87+
- `duration`: The duration of the transition in milliseconds.
88+
- `easing`: The easing function to use for the transition.
89+
90+
Here is an example of how to use the `<ViewTransition>` component:
91+
92+
```html
93+
<ViewTransition mode="fade" duration="{300}">
94+
<MyComponent />
95+
</ViewTransition>
96+
```
97+
98+
This code will fade in the `MyComponent` component when it is mounted.
99+
100+
**Conclusion**
101+
102+
View transitions can be a powerful tool for improving the user experience of your SvelteKit applications. By using view transitions, you can make your app feel more polished, professional, and engaging.
103+
104+
I hope this blog post has given you a good introduction to view transitions in SvelteKit. If you have any questions, please feel free to leave a comment below.

apps/codingcatdev/src/routes/(content-single)/(non-course)/podcast/cwcc-1-building-docs-with-starlight-and-astro/+page.md

+6
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ title: Building docs with Starlight and Astro
2525
youtube: 'https://youtube.com/live/sF6UcV3moZg?feature=share'
2626
---
2727

28+
<script>
29+
import OpenIn from '$lib/components/content/OpenIn.svelte'
30+
</script>
31+
32+
<OpenIn url="https://github.com/CodingCatDev/astro-starlight-code-with-codingcatdev" />
33+
2834
Starlight, a documentation theme from [Astro](https://astro.build/), simplifies creating accessible, high-performance websites. Key features include:
2935

3036
1. **Content Support**: Starlight is compatible with Markdown, MDX, or Markdoc formats, facilitating quick website creation.

0 commit comments

Comments
 (0)