Añado archivos html, css, js para una primera prueba de funcionamiento de la app

This commit is contained in:
2025-07-02 10:24:44 +02:00
parent a41320732d
commit 2dabd33130
9 changed files with 184 additions and 17 deletions
+23
View File
@@ -0,0 +1,23 @@
@keyframes scroll {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}
.animate-scroll {
display: inline-block;
animation: scroll 20s linear infinite;
}
@keyframes blink {
0%, 100% { background-color: #0a6eb2}
50% { background-color: #ffff00; color: black; }
}
.blink-yellow {
animation: blink 3s steps(1,end) infinite;
}