Actions
Chyba #83
openPožadavek #84: images
images fade in/out
Start date:
10/27/2024
Due date:
% Done:
0%
Estimated time:
Description
add fade in effect to banners and/or all images
http://pureosc.local/install/tpl/fade.html
Files
Updated by Šimon Formánek 7 months ago
- Assignee set to Šimon Formánek
- Parent task set to #84
<style>
@keyframes fadeInUp {
0% {
/* transform: translateY(100%);*/
opacity: 0;
}
100% {
/* transform: translateY(0%);*/
opacity: 1;
}
}
body {
animation: 2.5s fadeInUp;
}
</style>
Updated by Šimon Formánek 7 months ago
Actions