From: Vincent Vanwaelscappel Date: Tue, 1 Oct 2024 10:13:10 +0000 (+0200) Subject: wait #7109 @0.75 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=5ab0f36befae0d6748f2c216fd73dd7e075d129d;p=Animations.git wait #7109 @0.75 --- diff --git a/JoueClubButton/index.html b/JoueClubButton/index.html index c32331e..d97262a 100644 --- a/JoueClubButton/index.html +++ b/JoueClubButton/index.html @@ -10,6 +10,13 @@ main { cursor: default; + opacity: 0; + transition: opacity 0.3s; + } + + main.show { + opacity: 1; + transition: opacity 0.3s; } .pulse { @@ -192,6 +199,10 @@ }, 750) }); + // Fade + $('main').addClass('show'); + + // Pulse //gsap.to(".pulse", {duration: 2, repeat: -1, scale: 1.42, backgroundColor: "rgba(226, 0, 43, 0)"}); }); diff --git a/JoueClubButton/jc2024button.zip b/JoueClubButton/jc2024button.zip index 3c99bec..bfa19ea 100644 Binary files a/JoueClubButton/jc2024button.zip and b/JoueClubButton/jc2024button.zip differ