jueves, 4 de enero de 2024

Pruebas html 2

Toca con el dedo

Prueba

En esta prueba muebo un cubo con un script para html....en la prueba de mas arriba al tocar el cuadrado aparecen cuadraritos al tocar pantalla de telefono movil en pc no funciona......todo echo con IA.........manipulable ....con la IA...tienes un maestro de escuela.....simplemente alucinante

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

Cuadrado gira por html programacion simple

<!DOCTYPE html>
<html>
<head>
  <title>Cuadrado girando continuamente</title>
  <style>
    .square {
      width: 100px;
      height: 100px;
      background-color: red;
      position: relative;
      animation: rotate 2s infinite linear;
    }
    @keyframes rotate {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
  </style>
</head>
<body>
  <div class="square"></div>
</body>
</html>

Cuadrado girando continuamente