Brak tytułu
Data utworzenia: 2025-01-13 10:29:18
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
header{
position: relative;
font-family: 'Lato', sans-serif;
height: 101vh;
}
.img1{
position: relative;
height: 100%;
background: url("./parallax2.jpeg");
background-repeat: no-repeat;
background-size: 400%;
background-position: center;
animation: parallax2 3s ease forwards;
/* obrazek ma pozostać na ekranie po zakończeniu animacji */
animation-delay: 1s;
opacity: 0;
}
.img2{
height: 100%;
background: url("./parallax1.png") no-repeat center / cover;
animation: parallax1 2s ease forwards;
animation-delay: 1s;
}
Powrót