From 5a1fb0c5f9f7d0679ad686408bd4b869d2db7078 Mon Sep 17 00:00:00 2001 From: Michal Vanko Date: Thu, 13 Mar 2025 22:40:21 +0100 Subject: [PATCH] added logo bg pulsing effect --- templates/assets/animated_logo.html | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/templates/assets/animated_logo.html b/templates/assets/animated_logo.html index a2fd1bb..ebabe6f 100644 --- a/templates/assets/animated_logo.html +++ b/templates/assets/animated_logo.html @@ -41,7 +41,7 @@ bgAnimationTimeline.add({ targets: '#m-logo #bg-gradient #bg-stop', offset: "0%", - stopColor: "rgba(216, 246, 255, 1)", + stopColor: "rgba(216, 246, 255, 0.8)", easing: 'easeInQuint', duration: 123, }) @@ -50,6 +50,18 @@ offset: "100%", easing: 'easeOutExpo', duration: 333, + complete: (animation) => { + const target = animation.animatables[0].target + target.setAttribute("stop-color", "rgba(216, 246, 255, 0.8)") + anime({ + targets: '#m-logo #bg-gradient #bg-stop', + stopColor: "rgba(216, 246, 255, 0.3)", + easing: 'easeOutQuad', + duration: 3333, + direction: 'alternate', + loop: true, + }); + } }) } }, 160)