-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
41 lines (41 loc) · 942 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Progressive Image Effect</title>
<style>
div {
width: 900px;
height: 650px;
filter: blur(20px);
background-size: cover;
background-color: #a07250;
animation: hd-quality 1s;
animation-delay: 3s;
animation-fill-mode: forwards;
}
div::after {
animation: low-quality 1s;
animation-delay: 1s;
}
@keyframes low-quality {
0% {
background-image: url(http://i.imgur.com/w45Fo4Y.jpg);
}
}
@keyframes hd-quality {
0% {
background-image: url(http://i.imgur.com/w45Fo4Y.jpg);
filter: blur(20px);
}
100% {
background-image: url(http://i.imgur.com/w45Fo4Y.jpg);
filter: blur(0px);
}
}
</style>
</head>
<body>
<div style="background-image:url(http://i.imgur.com/w45Fo4Y.jpg);"></div>
</body>
</html>