add new animation named wink

This commit is contained in:
Christopher Arthaud 2023-12-11 23:12:31 +01:00
parent 3235f27325
commit 81f0c80cf6

View file

@ -0,0 +1,17 @@
@keyframes winky {
0% {
clip-path: ellipse(100% 100% at center);
}
50% {
clip-path: ellipse(100% 0% at center);
}
100% {
clip-path: ellipse(100% 100% at center);
}
}
.wink {
animation-timing-function: cubic-bezier(1, 0.5, 0.5, 0);
animation-duration: 0.5s;
animation-name: winky;
}