Animated clouds that can be used in any WordPress section or container.
Fully mobile responsive
4.4/5 - (5 votes)
Animated clouds that can be used in any WordPress section or container.
Fully mobile responsive
Could Effect CSS
-------------
style|--i:1
Cloud Animation CSS
--------------------------
.clouds{
/* animation 1
animation: animate 8s linear infinite;
*/
/* animation 2
animation: animate calc(8s * var(--i)) linear infinite;
*/
}
@keyframes animate{
0%{
transform:translateX(-100%);
}
100%{
transform:translateX(100%);
}
}