Godot, scripts para Godot estudios y aprendizajes, Creacion de videojuegos. Creacion y publicacion de videojuegos en internet. Como hacer videojuegos. C# unity. Animaciones unity blender. Personajes videojuegos graficos dibujos. Diseño grafico. Comic. Animaciones gif. Dibujo de retratos. Realidad virtual. Cine y realidad virtual.
jueves, 4 de enero de 2024
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>
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>
Suscribirse a:
Entradas (Atom)