This website collects cookies to deliver better user experience
<div class="pacman"> <div class="eye"></div> </div>
.pacman { background-color: yellow; border-radius: 24px; height: 210px; width: 210px; clip-path: polygon(100% 0, 100% 25%, 50% 50%, 50% 50%, 100% 75%, 100% 100%, 0 100%, 0 0); }
.pacman { animation: mouth .35s infinite cubic-bezier(0.85, 0, 0.15, 1); animation-direction: alternate; } @keyframes mouth { 0% { clip-path: polygon(100% 0, 100% 25%, 50% 50%, 50% 50%, 100% 75%, 100% 100%, 0 100%, 0 0) } 100% { clip-path: polygon(100% 0, 100% 50%, 50% 50%, 50% 50%, 100% 50%, 100% 100%, 0 100%, 0 0) } }
28
0