IHYPRESS PROGRAMMING
CSS examples with code and output for beginners
c programming
HOME | ASP | C | CSS | GNUPLOT | HTML | JAVASCRIPT | PERL | PHP | PYTHON | RUBY | SVG
CSS ❯ Filter Properties
<15>
<!DOCTYPE HTML> <html lang="en"> <head> <meta charset="utf-8"> <title>The filter properties</title> <style> img {width:100px;height:auto;} </style> </head> <body> <div> <img src="images/hibiscus.jpg" alt="hibiscus (original, no filter)"> <img src="images/hibiscus.jpg" alt="hibiscus blur filter" style="filter:blur(2px);"> <img src="images/hibiscus.jpg" alt="hibiscus sepia filter" style="filter:sepia(100%);"> <img src="images/hibiscus.jpg" alt="hibiscus grayscale filter" style="filter:grayscale(100%);"> <img src="images/hibiscus.jpg" alt="hibiscus low saturate filter" style="filter:saturate(30%);"> <img src="images/hibiscus.jpg" alt="hibiscus high saturate filter" style="filter:saturate(300%);"> <img src="images/hibiscus.jpg" alt="hibiscus invert filter" style="filter:invert(100%);"> <img src="images/hibiscus.jpg" alt="hibiscus low brightness filter" style="filter:brightness(50%);"> <img src="images/hibiscus.jpg" alt="hibiscus low contrast filter" style="filter:contrast(20%);"> <img src="images/hibiscus.jpg" alt="hibiscus hur-rotate filter" style="filter:hue-rotate(90deg);"> <img src="images/hibiscus.jpg" alt="hibiscus three filters applied" style="filter:contrast(200%) brightness(200%) saturate(200%);"> </div> </body> </html>
Hergestellt in Deutschland / Made in Germany
The filter properties
hibiscus (original, no filter) hibiscus blur filter hibiscus sepia filter hibiscus grayscale filter hibiscus low saturate filter hibiscus high saturate filter hibiscus invert filter hibiscus low brightness filter hibiscus low contrast filter hibiscus hur-rotate filter hibiscus three filters applied
COPYRIGHT © 2015-2024 IHY PRESS Frankfurt am Main 60329 Deutschland