CSS properties - filter

revision:


filter property

- defines visual effects (like blur and saturation) to an element (often <img>).

To use multiple filters, separate each filter with a space

CSS syntax : filter: none | blur() | brightness() | contrast() | drop-shadow() | grayscale() | hue-rotate() | invert() | opacity() | saturate() | sepia() | url();

Property values:

none : default value. Specifies no effects

blur(px) : applies a blur effect to the image. A larger value will create more blur. If no value is specified, 0 is used.

brightness(%) : adjusts the brightness of the image. 0% will make the image completely black. 100% (1) is default and represents the original image. Values over 100% will provide brighter results.

contrast(%) : adjusts the contrast of the image. 0% will make the image completely black. 100% (1) is default, and represents the original image. Values over 100% will provide results with more contrast.

drop-shadow(h-shadow v-shadow blur spread color) : applies a drop shadow effect to the image. Possible values:

h-shadow - required. Specifies a pixel value for the horizontal shadow. Negative values place the shadow to the left of the image.
v-shadow - required. Specifies a pixel value for the vertical shadow. Negative values place the shadow above the image.
blur - optional. This is the third value, and must be in pixels. Adds a blur effect to the shadow. A larger value will create more blur (the shadow becomes bigger and lighter). Negative values are not allowed. If no value is specified, 0 is used (the shadow's edge is sharp).
spread - optional. This is the fourth value, and must be in pixels. Positive values will cause the shadow to expand and grow bigger, and negative values will cause the shadow to shrink. If not specified, it will be 0 (the shadow will be the same size as the element). Note: Chrome, Safari and Opera, and maybe other browsers, do not support this 4th length; it will not render if added.
color - optional. Adds a color to the shadow. If not specified, the color depends on the browser (often black). An example of creating a red shadow, which is 8px big both horizontally and vertically, with a blur effect of 10px: filter: drop-shadow(8px 8px 10px red);
Tip: This filter is similar to the box-shadow property.

grayscale(%) : converts the image to grayscale. 0% (0) is default and represents the original image. 100% will make the image completely gray (used for black and white images).Note: Negative values are not allowed.

hue-rotate(deg) : applies a hue rotation on the image. The value defines the number of degrees around the color circle the image samples will be adjusted. 0deg is default, and represents the original image. Note: Maximum value is 360deg.

invert(%) : inverts the samples in the image. 0% (0) is default and represents the original image. 100% will make the image completely inverted. Note: Negative values are not allowed.

opacity(%) : sets the opacity level for the image. The opacity-level describes the transparency-level, where: 0% is completely transparent and 100% (1) is default and represents the original image (no transparency).Note: Negative values are not allowed. Tip: This filter is similar to the opacity property.

saturate(%) : saturates the image. 0% (0) will make the image completely un-saturated. 100% is default and represents the original image. Values over 100% provides super-saturated results. Note: Negative values are not allowed.

sepia(%) : converts the image to sepia. 0% (0) is default and represents the original image. 100% will make the image completely sepia. Note: Negative values are not allowed.

url() : the url() function takes the location of an XML file that specifies an SVG filter, and may include an anchor to a specific filter element. Example: filter: url(svg-url#element-id)

initial : sets this property to its default value.

inherit : inherits this property from its parent element.

JavaScript syntax: object.style.filter="grayscale(100%)"

example: filter property

original image

smiley

grayscale:smiley

blur:smiley

brightness:smiley

contrast:smiley

drop-shadow:smiley

grayscale:smiley

invert:smiley

opacity:smiley

saturate:smiley

sepia:smiley

hue-rotate:smiley

hue-rotate & contrast:smiley

code:
                    <div>
                        <p>original image</p>
                        <img src="smiley.png" alt="smiley" width="100" height="100">
                        <div style="display: grid; grid-template-columns: repeat(5, 1fr)">
                            <p>grayscale:<img id="image-1" src="../pics/smiley.png" alt="smiley" width="100" height="100"></p>
                            <p>blur:<img id="image-2" src="../pics/smiley.png" alt="smiley" width="100" height="100"></p>
                            <p>brightness:<img id="image-3" src="../pics/smiley.png" alt="smiley" width="100" height="100"></p>
                            <p>contrast:<img id="image-4" src="../pics/smiley.png" alt="smiley" width="100" height="100"></p>
                            <p>drop-shadow:<img id="image-5" src="../pics/smiley.png" alt="smiley" width="100" height="100"></p>
                            <p>grayscale:<img id="image-6" src="../pics/smiley.png" alt="smiley" width="100" height="100"></p>
                            <p>invert:<img id="image-7" src="../pics/smiley.png" alt="smiley" width="100" height="100"></p>
                            <p>opacity:<img id="image-8" src="../pics/smiley.png" alt="smiley" width="100" height="100"></p>
                            <p>saturate:<img id="image-9" src="../pics/smiley.png" alt="smiley" width="100" height="100"></p>
                            <p>sepia:<img id="image-10" src="../pics/smiley.png" alt="smiley" width="100" height="100"></p>
                            <p>hue-rotate:<img id="image-11" src="../pics/smiley.png" alt="smiley" width="100" height="100"></p>
                            <p>hue-rotate & contrast:<img id="image-12" src="../pics/smiley.png" alt="smiley" width="100" height="100"></p>
                        </div>
                    </div>
                    <style>
                        #image-1 {filter: grayscale(100%);}
                        #image-2 {filter: blur(5px);}
                        #image-3 {filter: brightness(200%);}
                        #image-4 {filter: contrast(200%);}
                        #image-5 {filter: drop-shadow(8px 8px 10px gray);}
                        #image-6 {filter: grayscale(50%);}
                        #image-7 {filter: invert(100%);}
                        #image-8 {filter: opacity(20%);}
                        #image-9 {filter: saturate(800%);}
                        #image-10 {filter: sepia(100%);}
                        #image-11 {filter: hue-rotate(180deg);}
                        #image-12 {filter: hue-rotate(180deg) contrast(200%);}
                    </style>