Add slideshow keyframes

This commit is contained in:
Ferit Yiğit BALABAN
2022-07-28 13:37:14 +03:00
parent 81b40a1097
commit 1c3459c89c

View File

@@ -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;
}
}