This commit is contained in:
2025-06-27 16:02:00 +02:00
parent 96dbc38c3a
commit 012058b998
21 changed files with 1299 additions and 433 deletions

View File

@ -13,14 +13,10 @@ gsap.registerPlugin(ScrollTrigger)
watch(useColorMode(), (color) => {
console.log(color);
})
onMounted(() => {
const anim = gsap.fromTo(
'h1',
{
@ -45,12 +41,12 @@ onMounted(() => {
const animh2 = gsap.fromTo(
'h2',
{
opacity: 0,
color: 'var(--color-accent-green-light)',
// opacity: 0,
// color: 'var(--color-accent-green-light)',
},
{
opacity: 1,
duration: 1,
// opacity: 1,
// duration: 1,
ease: 'power2.out',
}
)