CSS Filter-Blur filter-blur and css Blur
CSS Filter-Blur
The Blur filter is similar to the motion Blur in ps.
Syntax:
{FILTER: blur (add = add, direction = direction, strength = strength )}
The "ADD" parameter is a Boolean value that determines "TRUE (default)" or "FALSE ". It specifies whether the image is changed to the fuzzy effect of the image. The Blur effect is performed clockwise,
The "ction" parameter is used to set the fuzzy DIRECTION. Where 0 degrees indicates vertical up, and then every 45 degrees is a unit. The default value is 270 degrees to the left.
The "STRENGTH" value can only be specified by an integer. It indicates how many pixels of width will be blurred. The default value is 5.
Instance:
<Html>
<Head>
<Title> blur effect display: </title>
<Style type = "text/Css">
. A1 {filter: blur (add = ture, direction = 135, strength = 10); height: 450; font-size: 72; color: blue; font-weight: bold} // direction 135 affects width 10
. A2 {filter: blur (add = ture, direction = 45, strength = 10); height: 450; font-size: 72; color: blue; font-weight: bold} // direction 45 affects width 10
. A3 {filter: blur (add = ture, direction = 135, strength = 20); height: 450; font-size: 72; color: blue; font-weight: bold} // direction 135 affects width 20
</Style>
</Head>
<Body>
<br>
</Body>
</Html>
Css blur fuzzy Filter Example:
Div {width: 200px; filter: blur (strength = 50) flipv ();}
Img {filter: invert ();}
Do you understand what is wrong?
CSS fuzzy Filter