jueves, 4 de enero de 2024

Triangulo programado por html

Ayudado por IA consegui hacer un cuadrado y un triangulo simples girando ......pronto are algun juego asi tambien ayudado por la IA estoy alucinando pepinillos
.



...........



<!DOCTYPE html>
<html>
<head>
  <title>Triángulo azul girando continuamente</title>
  <style>
    .triangle {
      width: 0;
      height: 0;
      border-left: 50px solid transparent;
      border-right: 50px solid transparent;
      border-bottom: 100px solid blue;
      position: relative;
      animation: rotate 2s infinite linear;
    }
    @keyframes rotate {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(-360deg);
      }
    }
  </style>
</head>
<body>
  <div class="triangle"></div>
</body>
</html>

Triángulo azul girando continuamente

No hay comentarios:

Publicar un comentario