HTML
____________________________ CSS .animacao{ display: flex; justify-content: space-around; width: 118px; height: 118px; } .animado1{ position: relative; top: 80%; width: 30px; height: 30px; border-radius: 100%; background-color: white; display: inline-block; animation: animado1-1 1s ease-in 0s infinite alternate forwards; } .animado1:nth-child(2){ animation: animado1-2 1s ease-in 0.3s infinite alternate forwards; } .animado1:nth-child(3){ animation: animado1-3 1s ease-in 0.6s infinite alternate forwards; } @keyframes animado1-1 { from{ top:80%; } to{ top: 20%; } } @keyframes animado1-2 { from{ top:80%; } to{ top: 20%; } } @keyframes animado1-3 { from{ top:80%; } to{ top: 20%; } }
HTML
____________________________ CSS .animacao{ display: flex; justify-content: space-around; width: 118px; height: 118px; } .animado2{ position: relative; top: 50%; margin-top: -15px; width: 30px; height: 30px; background-color: white; border-radius: 100%; display: inline-block; animation: animado2-1 0.6s ease-in 0s infinite alternate forwards; } .animado2:nth-child(2){ animation: animado2-1 0.6s ease-in 0.6s infinite alternate forwards; } @keyframes animado2-1 { to{ transform: scale(170%); } }
HTML
____________________________ CSS .animacao{ display: flex; justify-content: space-around; width: 118px; height: 118px; } .animado3{ width: 100px; height: 100px; border-top: 3px solid white; border-radius: 100px; position:relative; top: 50%; margin-top: -50px; animation: animado3-1 1s normal 0.0s infinite linear forwards; } @keyframes animado3-1 { to{ transform: rotate(360deg); } }
HTML
____________________________ CSS .animacao{ display: flex; justify-content: space-around; width: 118px; height: 118px; } .animado4{ width: 50px; height: 50px; background-color: white; position:relative; top: 50%; margin-top: -25px; animation: animado4-1 1s ease-in 0s infinite alternate-reverse forwards; } @keyframes animado4-1 { to{ border-radius: 100%; transform: rotate(740deg); } }
HTML
____________________________ CSS .animacao{ display: flex; justify-content: space-around; width: 118px; height: 118px; } .animado5{ position: relative; width: 50px; height: 50px; border-radius: 100%; background-color: white; animation: animado5-1 0.5s ease-in 0s infinite alternate-reverse forwards; } @keyframes animado5-1 { from{ top:0px; } to{ top:75px; height: 40px; } }
HTML
____________________________ CSS .animacao{ display: flex; justify-content: space-around; width: 118px; height: 118px; } .animado6{ position: relative; top: 50%; margin-top: -15px; width: 30px; height: 30px; border-radius: 100%; background-color: white; animation: animado6-1 0.5s ease-in 0s infinite alternate-reverse forwards; } .animado6:nth-child(2){ animation: animado6-1 0.5s ease-in 0.2s infinite alternate-reverse forwards; } .animado6:nth-child(3){ animation: animado6-1 0.5s ease-in 0.4s infinite alternate-reverse forwards; } @keyframes animado6-1 { to{ opacity: 0.3; transform: scale(120%); } }
Animações Load CSS
<Ver Código>
<Ver Código>
<Ver Código>
<Ver Código>
<Ver Código>
<Ver Código>