From 1c3459c89cbe88537d5273f59228002acf5c42bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferit=20Yi=C4=9Fit=20BALABAN?= Date: Thu, 28 Jul 2022 13:37:14 +0300 Subject: [PATCH] Add slideshow keyframes --- resources/css/keyframes.scss | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/resources/css/keyframes.scss b/resources/css/keyframes.scss index 37a5761..f8c25ce 100644 --- a/resources/css/keyframes.scss +++ b/resources/css/keyframes.scss @@ -9,4 +9,24 @@ width: 100%; height: 100vh; } +} + +@keyframes slideshow { + 0% { + opacity: 0; + animation-timing-function: ease-in; + } + 8% { + opacity: 1; + animation-timing-function: ease-out; + } + 17% { + opacity: 1; + } + 25% { + opacity: 0; + } + 100% { + opacity: 0; + } } \ No newline at end of file