Fade Transition

This commit is contained in:
2023-06-23 15:40:45 -04:00
parent fe985c43c9
commit 701172c982
3 changed files with 13 additions and 2 deletions

View File

@@ -1,3 +1,12 @@
body {
html, body {
height: 100%; /* ges Hoehe der Seite -> weitere Hoehenangaben werden relativ hierzu ausgewertet */
overflow: hidden; /* hide scrollbars */
opacity: 1.0;
background-size: cover;
/* TODO: Make the transition time configurable */
-webkit-transition: background 5s linear;
-moz-transition: background 5s linear;
-o-transition: background 5s linear;
-ms-transition: background 5s linear;
transition: background 5s linear;
}