Denis Potschien March 4th, 2016

SVG Filters: How to Apply Them to HTML Elements

SVG-Filter: How to Apply Them to HTML Elements
You can use CSS3 to add blur, shadow, brightness or contrast to an element. Overall, there are ten filters available. The SVG format knows filter effects as well. Partially, these options overlap, for example when it comes to blur. However, the SVG format knows several additional filters that CSS3 alone can't create. With little effort, you can add any desired SVG filter to an HTML element. SVG-Filter: How to Apply Them to HTML Elements

These SVG Filters Exist

While CSS3 has a total of ten different filters, the SVG format offers 19 of them. For example, there's "<feConvolveMatrix>", which mixes pixels on an image with adjacent pixels. This creates a smudgy effect similar to the motion blur in Photoshop. Using "<feGaussianBlur>" allows you to apply a Gaussian blur, while "<feMorphology>" makes sure that the pixels of an image are thinned or thickened. svg-filter_original_verdickung Original Image and the Applied "<feMorphology>" Filter You can use the filter "<feColorMatrix>" for different color manipulations, for example to alter an image's saturation, hue, and brightness. The two filters "<feDiffuseLighting>" and "<feSpecularLighting>" allow you to add lighting effects like diffused or reflected light to a picture. With "<feDistantLight>", "<fePointLight>" or "<feSpotLight>", you can define different light sources. svg-filter_beleuchtung Image With Lighting Filter There are several other filters, some of which are rather unspectacular, "<feOffset>", which only moves an image, and some of which are rather special, like "<feTurbulence>", which creates turbulences and fractals.

Creating and Applying SVG Filters

If you want to apply SVG filters to any HTML element, all you need to do is set the filter itself via SVG. This should be done within the "<defs>" section. It is made for elements like patterns, flows or filters, meaning elements, that are not visible but applied to other elements. Also, filters need to be placed within the "<filter>" element.
<svg>
  <defs>
    <filter id="blurryexample">
      <feConvolveMatrix order="20, 1" kernelMatrix="1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1" />
    </filter>
  </defs>
</svg>
In the example, the filter "<feConvolveMatrix>" is set. The attribute "order" defines how many adjacent pixels on the x- and y-axis should be included. In the example, only pixels on the x-axis are mixed, which creates motion blur. The values defined by "order" form a matrix - 20 times 1 pixel in this example. "kernelMatrix" is used to define the values of every pixel of the matrix. As our matrix only consists of one line, 20 values need to be defined for this line. Values for further lines would be set divided by a comma. svg-filter_bewegungsunschaerfe Picture With Motion Blur The filter needs an ID in order to be applicable to other elements within the HTML document. Afterwards, you need to transfer the SVG filter's ID to the CSS3 attribute "filter()".
img {
  filter: url(#motionblur);
}
In the example, the filter is applied to all "<img>" elements. You need to be aware of the fact that the attribute "filter" only works with a fitting vendor prefix on some browsers. While modern browsers like Chrome and Firefox support the option of applying SVG filters to any element, this doesn't work on Internet Explorer, and Microsoft's new browser Edge (yet).

Combining Filters and Applying Them to Texts

Of course, you can also combine filters. To do so, simply set multiple filters within one "<filter>" element. svg-filter_bewegungsunschaerfe-farbton Picture With Motion Blur and Hue Changes
<svg>
  <defs>
    <filter id="motionblur_huevalue">
      <feConvolveMatrix order="20, 1" kernelMatrix="1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1" />
      <feColorMatrix type="hueRotate" values="-90" />
    </filter>
  </defs>
</svg>
In the example, the filters "<feConvolveMatrix>" and "<feColorMatrix>" are combined. The latter makes sure that the hue rotation ("hueRotate") of 90 degrees is achieved via "type". svg-filter_bewegungsunschaerfe_text Text With Motion Blur As mentioned in the beginning, the filters not only work for pictures, but for all HTML elements. This allows you to create interesting text effects. When applied to a heading e.g., it could gain a motion blur effect.

Examples on Codepen

(dpe)

Image Source: Pelican on pier post by sea. — Photo by brians101

Denis Potschien

Denis works as a freelance web designer since 2005.

Leave a Reply

Your email address will not be published. Required fields are marked *