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

rendered animation

Loader Gooey Effect

1<svg height="400" width="400" id="preloader">
2  <g filter="url(#goo)">
3    <circle class="outer" cx="200" cy="200" r="150" />
4    <circle class="drop" cx="200" cy="200" r="20">
5  </g>
6
7  <defs>
8    <filter id="goo">
9      <feGaussianBlur in="SourceGraphic" stdDeviation="8" result="blur" />
10      <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" />
11
12    </filter>
13  </defs>
14</svg>