-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest2.html
More file actions
99 lines (65 loc) · 1.61 KB
/
test2.html
File metadata and controls
99 lines (65 loc) · 1.61 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<style>
span {
position:relative;
}
img {
position:relative;
top:300px;
left:100px;
margin-right:90px;
}
body :nth-child(4) {
-webkit-filter: sepia(100%);
}
body img:nth-child(6) {
-webkit-filter: sepia(50%);
}
body img:nth-child(8) {
-webkit-filter: saturate(50%)
}
body img:nth-child(10) {
-webkit-filter: saturate(550%)
}
body img:nth-child(12) {
-webkit-filter: brightness(55%);
}
body img:nth-child(14) {
-webkit-filter: hue-rotate(90deg);
}
body img:nth-child(16) {
-webkit-filter: grayscale(60%);
}
body img:nth-child(18) {
-webkit-filter: contrast(200%);
}
body img:nth-child(20) {
-webkit-filter: contrast(80%);
}
</style>
</head>
<body>
<span>Original</span>
<img src="textures/lily1.png">
<span>100% Sepia</span>
<img src="textures/lily1.png">
<span>50 % Sepia</span>
<img src="textures/lily1.png">
<span>50% saturate</span>
<img src="textures/lily1.png">
<span>550% saturate</span>
<img src="textures/lily1.png">
<span>55% brightness</span>
<img src="textures/lily1.png">
<span>90deg hue</span>
<img src="textures/lily1.png">
<span>40% gray</span>
<img src="textures/lily1.png">
<span>200% contrast</span>
<img src="textures/lily1.png">
<span>80% contrast</span>
<img src="textures/lily1.png">
</body>
</html>