Important Notice:

Course Content
Float Property
0/1
Z-Index
0/1
CSS object-fit Property
0/1
CSS Visibility Property
0/1
CSS (Chapter 4) M2-R5.1
About Lesson

saturate(%)

            यह function image को saturate करने के लिए प्रयोग किया जाता है। इसकी value percentage के रूप में pass की जाती है।

sepia(%)

           यह function image को काले और भूरे रंग के combination में convert करता है। इसकी value percentage में define की जाती है।

url()

        यह function SVG elements को filter करने के लिए प्रयोग किया जाता है। इस function में उस XML file का address pass किया जाता है जो SVG element को filter करेगी।

 

saturate(%)

            This function is used to saturate the image. Its value is passed as percentage.

sepia(%)

           This function converts the image to a combination of black and gray. Its value is defined in percentage.

url()

        This function is used to filter SVG elements. In this function the address of the XML file which will filter the SVG element is passed.

Example:

 

<html>

<head>

<title>CSS filter Property Demo</title>

<style>

img{   

filter:blur(5px);

}

</style>

</head>

 <body>

<h1>CSS filter Property Example</h1>

<img src=”images/bht-logo.jpg”>

</body>

</html>

 

error: Content is protected !!