13 lines
No EOL
481 B
Svelte
13 lines
No EOL
481 B
Svelte
<script lang="ts">
|
|
import TopAnimatedBackground from "./Comps/TopAnimatedBackground.svelte";
|
|
import { Parallax, ParallaxLayer, StickyLayer } from "svelte-parallax";
|
|
import ZhenAboutMe from "./Comps/AboutMe.svelte"
|
|
</script>
|
|
|
|
<Parallax sections={2} config={{ stiffness: 0.1, damping: 0.3 }}>
|
|
<TopAnimatedBackground/>
|
|
|
|
<ParallaxLayer rate={0.5} offset={0.5} style="background-color: var(--background);">
|
|
<ZhenAboutMe/>
|
|
</ParallaxLayer>
|
|
</Parallax> |