This is a set of cool liquid droplet fusion decomposition animation effects created using the HTML5 SVG filter. These SVG animation effects enable some HTML elements, such as menus, paging buttons, apps, selection boxes and other elements of the transition animation like a few drops of the fusion decomposition, the effect is very cool.
With SVG filters you can modify a given graph to create the results we need. SVG contains a set of filter elements that can perform various actions.
The most common SVG filter effect is to make the blur effect through Fegaussianblur .
<svg xmlns= "Http://www.w3.org/2000/svg" version= "1.1" width= "" "height=" > <defs> < Filter id= "blur" x= "0" y= "0" > <fegaussianblur in= "sourcegraphic" stddeviation= "5"/> </filter > </defs> <rect x= "y=" width= "height=" fill= "#8d81ac" filter= "url (#blur)"/>
Online Demo: http://www.htmleaf.com/Demo/201503111501.html
: http://www.htmleaf.com/html5/SVG/201503111500.html
7 Kinds of cool HTML5 svg liquid droplet fusion decomposition animation effect