theread.me/_posts/2015-03-28-css-filters.md

8.1 KiB

layout title date permalink categories author
post CSS Filters are awesome! 2015-03-28 17:13:46 css-filters/ programming Mahdi

I've been working on the CSS Filter Editor widget in Firefox Developer Tools for a couple of weeks, thanks to Patrick Brosset for mentoring me and Tim Nguyen for his great contributions.

Here is an online version to use as a playground. This version is modified to be cross-browser and therefore is a little different from the original widget used in Firefox.

You can also use David Walsh's demo, although it doesn't have as much flexibility.

CSS Filters are supported by most modern browsers (Can I Use CSS Filters), if your browser doesn't support this, please change your browser (I recommend Firefox).

Introduction

CSS Filters introduce a few useful effects and some image adjusting functions, namely blur, drop-shadow, contrast, brightness, and a few others which can be really useful if used properly.

A simple demo showing blur, contrast and brightness combined (hover over image):

I group filters by the type of value they take, let's explain them briefly:

Length

These filters accept a length value (px, em, cm, etc). blur is the only member of this family.

Percentage

These filters accept percentage values, but if you omit the percentage sign, the value is multiplied by 100, e.g. contrast(2) is another way of writing contrast(200%). Negative values have the same effect as zero.

Most filters explain themselves:

  • brightness
  • contrast
  • grayscale
  • invert
  • opacity
  • saturate
  • sepia

invert

I first understood how cool this filter can be after I saw Tim Nguyen using this in theme switching. Yeah you can't invert everything and "Yay, I have a new theme", but you can use invert on some elements and it works flawlessly, believe me.

opacity

You might wonder why do we have this function, as we already have an opacity property in CSS, that's because the opacity property is not hardware accelerated, but the filter property is hardware accelerated in most browsers, which includes this function.

Angle

hue-rotate is the only function to accept an angle value (degree / radian).

###hue-rotate If you're familiar with Hue you probably know that it's measured by angles. The hue-rotate rotates the hue circle of an image relative to it's current hue value (360 and 0 have the same results).

Special

These filter's don't fit in any of the groups above, they have special/mixed values.

drop-shadow

The drop-shadow filter accepts a shadow-list, four length values, and one color. box-shadow and text-shadow also accept shadow lists.

You're probably familiar with shadow lists already: drop-shadow(x y radius spread color). Unfortunaly spread doesn't work in either Chrome or Firefox as of this writing — It is treated as an error.

drop-shadow is pretty cool, as it doensn't have the limitations of box-shadow and text-shadow. box-shadow applies a shadow to the outer shape, but drop-shadow applies a shadow to elements independant to their shape, they might be triangles, PNG's with transparent background or just anything.

drop-shadow clones the element's image, moves it to the offset defined, applies blur and changes it's color, putting it under the original element. Couldn't do it better:

drop-shadow explained

Here is an example, a PNG image with transparent background and a CSS triangle made using the border hack:

url

With the url function we have the power of CSS and SVG Filters in one place. You can reference an SVG element by linking to it with a hash of the filter element's ID:

{% highlight css %} filter: url(/example.svg#filter) {% endhighlight %}

If you want to know more about SVG Filters, I recommend MDN's tutorial on SVG Filters.

Custom

Now those filters are pretty cool, but what if I told you this is [going to be] done with CSS?

Map Folding with Custom CSS Filters

{% include caption.html text='Source: http://www.adobe.com/devnet/archive/html5/articles/css-shaders.html' %}

Custom Filters allows usage of vertex and fragment shaders which run directly in the GPU. Custom filters' specs is subject to change, so there's no implementation yet. For more info on this topic follow the links below:

Gotchas

You now have a basic understanding of filters, good. Here are a few gotchas you'd better know.

Order matters

The order in which filters are applied matters. Take this example:

{% highlight css %} filter: blur(10px) contrast(2); {% endhighlight %}

Hey, browser, please blur the element, then double the contrast of the blurred element. (blurred parts have their contrast affected)

{% highlight css %} filter: contrast(2) blur(10px); {% endhighlight %}

Hey browser, please double the contrast of my element, then blur it out. (high contrast image is blurred normally)

Here is the actual comparison:

Inheritance

Okay, you now know the order of filters matters, the filter property is not actually inherited, but when you apply a filter on a parent element, of course it's children are affected too, but what if the children have their own css filters? Ah-ha! CSS properties are applied bottom-up, which means childrens' filters are applied first.

Implementation

I said using the url function we have "the power of CSS and SVG filters in one place", but the CSS filters are actually implemented using SVG filters! You know, the functions are actually referencing to an svg generated in the browser. Here is the list of CSS Filter equivalents.

Go Wild

You can use CSS Filter on any element, experiment different things; <video>, <canvas>, <iframe>, GIF images, etc.

My try (although I couldn't get the GIF and CSS animation to be in sync, know a solution? Leave a comment please):


That's it, you can subscribe to my [RSS]({{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}) or follow me on [Twitter](https://twitter.com/{{ site.twitter_username }}) to get more articles like this.