-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
132 lines (118 loc) · 2.19 KB
/
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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blinky</title>
<style>
body {
background: #555;
}
.aligner {
display: flex;
align-items: center;
justify-content: center;
}
.aligner-item {
max-width: 50%;
}
.clip-circle {
height: 400px;
width: 100%;
max-width:800px;
border-radius: 50%;
overflow: hidden;
margin: 25px auto 0;
border-top: 15px inset rgba(0,0,0,.25);
}
.eye {
width: 100%;
height: 400px;
border-radius: 100%;
position: relative;
background: radial-gradient(circle at 50%, #fcfcfc, #efeff1 66%, #eecccc 100%);
}
.iris {
width: 50%;
max-width: 300px;
height: 300px;
border-radius: 100%;
position: absolute;
left: 0;
top: 0;
margin: 10% 30%;
animation: move 5s ease-out infinite;
background: radial-gradient(circle at 50% 50%, #066 0%, #6cc 90%);
}
.iris:before {
content: "";
width: 40%;
height: 40%;
border-radius: 100%;
position: absolute;
left: 50%;
top: 50%;
background: black;
transform: translate(-50%, -50%);
}
.iris:after {
content: "";
width: 30%;
height: 30%;
border-radius: 100%;
position: absolute;
left: 20%;
top: 20%;
background: rgba(255, 255, 255, 0.2);
}
#lid {
animation: blink 2.4s infinite;
animation-delay: 8s;
top: -50px;
border-bottom:15px inset #000;
}
@keyframes move {
0% {
transform: none;
}
20% {
transform: translateX(-100px) translateY(20px) scale(0.95);
}
25%, 44% {
transform: none;
}
50%, 60% {
transform: translateX(100px) translateY(-40px) scale(0.95);
}
66%, 100% {
transform: none;
}
}
@keyframes blink {
90% {
transform: none;
animation-timing-function: ease-in;
}
93% {
transform: translateY(15px) scaleY(0)
}
100% {
animation-timing-function: ease-out;
}
}
</style>
<script>
</script>
</head>
<body>
<div class="clip-circle aligner">
<div id="lid" class="eye">
<div class="iris"></div>
</div>
<div id="lid" class="eye">
<div class="iris"></div>
</div>
</div>
</body>
</html>