animation2code benchmark
For best compatibility, please view this dashboard in a Chrome browser.
← back

rendered animation

Again a box-shadow loader kind of thing..

1body {
2  background: black;
3  position: absolute;
4  left: 40%;
5  top: 30%;
6  border-radius: 10% 100% 100% 100%;
7  border: 20px solid transparent;
8  box-shadow: 82px 0 0px 0px #aaf, 82px 0 0px 8px gray, 82px 0 0px 12px #faa, 82px 0 0px 15px #ffa, 82px 0 0px 18px orange, 82px 0 0px 20px;
9  animation: myanim 2s ease-in-out infinite; }
10
11@keyframes myanim {
12  25% {
13    border-radius: 100% 100% 100% 10%; }
14  50% {
15    box-shadow: 82px 0 0px 0px orange, 82px 0 0px 8px gray, 82px 0 0px 12px orange, 82px 0 0px 15px #ffa, 82px 0 0px 18px orange, 82px 0 0px 20px;
16    border-radius: 100% 100% 10% 100%; }
17  75% {
18    border-radius: 100% 10% 100% 100%; } }
19