Would anyone know how to tell me some CSS effects for image files in general? I know some, however I would like to know if there are effects like inflate, shadow cast among others only using CSS.
Would anyone know how to tell me some CSS effects for image files in general? I know some, however I would like to know if there are effects like inflate, shadow cast among others only using CSS.
Best article that this one I do not know.
An example of the operation, taken from the article itself, is this:
img { display: block; width: 90%; }
img.filtro {
-webkit-filter: grayscale(1);
filter: grayscale(1);
}
<p>Imagem normal</p>
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/392/redwood-ukulele-top.jpg"alt="ukulele">
<p>Imagem com filtro</p>
<img class="filtro" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/392/redwood-ukulele-top.jpg"alt="ukulele">