-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfilter.css
More file actions
40 lines (40 loc) · 745 Bytes
/
Copy pathfilter.css
File metadata and controls
40 lines (40 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#img1{
filter: grayscale(100%); /* escala de cinza*/
width: 500px;
}
#img2{
filter: blur(4px); /* embaçamento*/
width: 500px;
}
#img3{
filter: brightness(30%); /* brilho*/
width: 500px;
}
#img4{
filter: contrast(50%); /* contraste*/
width: 500px;
}
#img5{
filter: drop-shadow(10px 10px 5px red); /* sombra projetada(distX,distY,tamanho,cor)*/
width: 500px;
}
#img6{
filter: hue-rotate(180deg); /*matix*/
width: 500px;
}
#img7{
filter: invert(1); /* inverte cores*/
width: 500px;
}
#img8{
filter: opacity(40%); /* opacidade*/
width: 500px;
}
#img9{
filter: saturate(30%); /* saturação*/
width: 500px;
}
#img10{
filter: sepia(100%); /* envelhecer*/
width: 500px;
}