mirror of
https://github.com/Start9Labs/start9.com.git
synced 2026-03-26 02:11:55 +00:00
20 lines
273 B
JavaScript
20 lines
273 B
JavaScript
//////////////////////////////////////////
|
|
// HERO
|
|
|
|
gsap.to("#hero-image", {
|
|
duration: 1,
|
|
//y: "-10rem",
|
|
scale: 1,
|
|
opacity: 1,
|
|
filter: "blur(0px)",
|
|
delay: 0.5,
|
|
});
|
|
|
|
gsap.to("#logo", {
|
|
duration: 0.5,
|
|
y: 0,
|
|
opacity: 1,
|
|
delay: 1.25,
|
|
//ease: "in-out"
|
|
});
|