From 08d1941a63982ac7e221c13ff0745ca2b0aa7a59 Mon Sep 17 00:00:00 2001 From: Francesco Zaia Date: Mon, 2 Jan 2017 10:33:18 +0100 Subject: [PATCH] Typo on fadeAndMove definition If I'm not wrong, according to the `animation-play-state: running;` animation, the final opacity on the `@keyframes` definition should be 1. --- property/animation-play-state/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/property/animation-play-state/index.html b/property/animation-play-state/index.html index be121a14..050a51fa 100644 --- a/property/animation-play-state/index.html +++ b/property/animation-play-state/index.html @@ -72,7 +72,7 @@

transform: translateX(0); } to { - opacity: 0; + opacity: 1; transform: translateX(100px); } }