A Startpage inspired by TB-96's Evening Startpage and Tobias-Schoch's startpage-wave. https://start.yandols.xyz
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

66 lines
1.2 KiB

/*
* Wave Animation
* Stylesheet taken from Tobias' Wave Startpage concept
* Modified by YandolsZX
* Original source can be found here: https://github.com/Tobias-Schoch/startpage-wave
*/
.wave-container .wave{
position:absolute;
bottom:0;
left:0;
width:100%;
height:100px;
background:url('wave.svg');
background-size:990px 100px;
background-repeat: repeat-x;
-webkit-filter: drop-shadow( 0px 3px 3px rgba(0, 0, 0, .7));
filter: drop-shadow( 0px 3px 3px rgba(0, 0, 0, .7));
}
.wave-container .wave.wave1{
animation:animate 30s linear infinite;
z-index:1000;
opacity:1;
animation-delay:0s;
bottom: 0;
}
.wave-container .wave.wave2{
animation:animate2 15s linear infinite;
z-index:999;
opacity:0.5;
animation-delay:-5s;
bottom: 10px;
}
.wave-container .wave.wave3{
animation:animate 30s linear infinite;
z-index:998;
opacity:0.2;
animation-delay:-2s;
bottom: 15px;
}
.wave-container .wave.wave4{
animation:animate2 5s linear infinite;
z-index:997;
opacity:0.7;
animation-delay:-5s;
bottom: 20px;
}
@keyframes animate{
0%{
background-position-x: 0;
}
100%{
background-position-x: 990px;
}
}
@keyframes animate2{
0%{
background-position-x: 0;
}
100%{
background-position-x: -990px;
}
}