¿Cómo Crear una Animación de Pac-Man en HTML y CSS?: Guía Paso a Paso

Indice

Introducción

Estructura HTML

<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Animación de Pac-Man</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <div class="pacman"></div>
</body>
</html>

Estilos CSS

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #000;
}

.pacman {
    position: relative;
    width: 100px;
    height: 100px;
    background: yellow;
    border-radius: 50%;
    clip-path: polygon(100% 50%, 0% 0%, 0% 100%);
}

Animación CSS

@keyframes pacman-animation {
    0%, 100% {
        clip-path: polygon(100% 50%, 0% 0%, 0% 100%);
    }
    50% {
        clip-path: polygon(100% 50%, 0% 25%, 0% 75%);
    }
}

.pacman {
    animation: pacman-animation 0.5s infinite;
}

Movimiento de Pac-Man

@keyframes move-pacman {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100vw);
    }
}

.pacman {
    animation: pacman-animation 0.5s infinite, move-pacman 5s linear infinite;
}

Conclusión

Deja un comentario

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

Scroll al inicio