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

rendered animation

Color Dots Loader

1<div class="dots">
2      <div class="dot"></div>
3      <div class="dot"></div>
4      <div class="dot"></div>
5      <div class="dot"></div>
6      <div class="dot"></div>
7	</div>
8
9<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
10  <defs>
11    <filter id="goo">
12      <feGaussianBlur in="SourceGraphic" stdDeviation="12" result="blur" />
13      <feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0  0 1 0 0 0  0 0 1 0 0  0 0 0 18 -7" result="goo" />
14      <feBlend in="SourceGraphic" in2="goo" />
15  	</filter>
16  </defs>
17</svg>