CSS Library: Image CSS: CSS3 demos: Here
CSS3 Blur Filter Images
Author: Dynamic Drive
CSS3's "filter" property lets you apply common filter effects to an element,
such as blur, grayscale, brightness, contrast and hu. In this demo we
demonstrate using one of the more dramatic effects, blur, on an image inside the
FIGURE element. When the mouse rolls over the FIGURE, we blur the containing
image while using CSS3 transform to zoom in slightly to heighten the effect:
figure.blurfilter:hover img{
-webkit-filter: blur(30px); /* blur filter */
filter: blur(30px); /* blur filter */
-webkit-transform: scale(1.3);
transform: scale(1.3);
transition: all 0.4s;
}
Following this we proceed to animate the FIGCAPTION element to show some descriptive text over the image.
The "filter" property is supported in IE Edge and all other
modern browsers.
Demo:
Into the Unknown
Little Red Riding Hood sets off into the woods, unbeknownst what lies ahead.
Into the Unknown
Little Red Riding Hood sets off into the woods, unbeknownst what lies ahead.
Into the Unknown
Little Red Riding Hood sets off into the woods, unbeknownst what lies ahead.
Into the Unknown
Little Red Riding Hood sets off into the woods, unbeknownst what lies ahead.
Into the Unknown
Little Red Riding Hood sets off into the woods, unbeknownst what lies ahead.
Into the Unknown
Little Red Riding Hood sets off into the woods, unbeknownst what lies ahead.
The CSS:
