Skip to content

Commit 0b23973

Browse files
authored
Merge pull request #5 from DevChris38/main
add new animation named wink
2 parents a1c345e + 81f0c80 commit 0b23973

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

source/attention_seekers/wink.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
@keyframes winky {
2+
0% {
3+
clip-path: ellipse(100% 100% at center);
4+
}
5+
50% {
6+
clip-path: ellipse(100% 0% at center);
7+
}
8+
100% {
9+
clip-path: ellipse(100% 100% at center);
10+
}
11+
}
12+
13+
.wink {
14+
animation-timing-function: cubic-bezier(1, 0.5, 0.5, 0);
15+
animation-duration: 0.5s;
16+
animation-name: winky;
17+
}

0 commit comments

Comments
 (0)