OgestanPre curso completo

This commit is contained in:
2025-12-15 21:19:10 -06:00
parent a305c9e1f5
commit aae60d6dfb
315 changed files with 46376 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
@-webkit-keyframes play{
0%{background-position:50% 0%;}
100%{background-position:50% 100%;}
}
@-moz-keyframes play{
0%{background-position:50% 0%;}
100%{background-position:50% 100%;}
}
@-o-keyframes play{
0%{background-position:50% 0%;}
100%{background-position:50% 100%;}
}
@keyframes play{
0%{background-position:50% 0%;}
100%{background-position:50% 100%;}
}
/********************************************/
.m1 {
background: url("../img/sprites/m1.png") 0 0;
background-size: auto 800%;
background-repeat: no-repeat;
background-position: 50% 0;
padding-bottom: 100%;
}
.m1.play {
-webkit-animation: play 1.9s steps(7) infinite;
-moz-animation: play 1.9s steps(7) infinite;
-o-animation: play 1.9s steps(7) infinite;
animation: play 1.9s steps(7) infinite;
}
.m1.stop {
background-position: 50% 0;
}