Añado archivos html, css, js para una primera prueba de funcionamiento de la app
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user