-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblackandwhite.html
51 lines (46 loc) · 1.34 KB
/
blackandwhite.html
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
<!DOCTYPE html>
<html>
<head>
<title>JosephWorks - BlackAndWhite</title>
<meta charset="utf-8">
<style>
.wrapper {
height: 100%;
width: 100%;
left:0;
right: 0;
top: 0;
bottom: 0;
position: absolute;
background: linear-gradient(#FFFFFF, #000000);
background-size: 1800% 1800%;
-webkit-animation: rainbow 0.05s ease infinite;
-z-animation: rainbow 0.05s ease infinite;
-o-animation: rainbow 0.05s ease infinite;
animation: rainbow 0.05s ease infinite;}
@-webkit-keyframes rainbow {
0%{background-position:0% 82%}
50%{background-position:100% 19%}
100%{background-position:0% 82%}
}
@-moz-keyframes rainbow {
0%{background-position:0% 82%}
50%{background-position:100% 19%}
100%{background-position:0% 82%}
}
@-o-keyframes rainbow {
0%{background-position:0% 82%}
50%{background-position:100% 19%}
100%{background-position:0% 82%}
}
@keyframes rainbow {
0%{background-position:0% 82%}
50%{background-position:100% 19%}
100%{background-position:0% 82%}
}
</style>
</head>
<body>
<div class="wrapper"></div>
</body>
</html>