From 90414e806275d8fbe714a13fda934a24ee47d949 Mon Sep 17 00:00:00 2001 From: ppoffice Date: Sun, 9 Dec 2018 12:02:55 -0500 Subject: [PATCH] fix(css): transform-scale elements are mistaken for the container for fixed elements --- source/js/animation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/js/animation.js b/source/js/animation.js index c824352..16479d5 100644 --- a/source/js/animation.js +++ b/source/js/animation.js @@ -31,7 +31,7 @@ $(selector).forEach(function (element) { setTimeout(function () { element.style.opacity = '1'; - element.style.transform = 'scale(1)'; + element.style.transform = ''; element.style.transition = 'opacity 0.3s ease-out, transform 0.3s ease-out'; }, i * 100); i++;