Update: Creacion de Papilocare

This commit is contained in:
2025-12-15 16:13:47 -06:00
parent 77fa734ee9
commit c480ed05e5
325 changed files with 309297 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
@-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%;}
}
/********************************************/
.h3 {
background: url("../img/sprites/h3.png") 0 0;
width: 400px;
height: calc(3680px / 8);
background-size: auto 800%;
background-repeat: no-repeat;
background-position: 50% 0;
}
.h3.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;
}
.h3.stop {
background-position: 50% 0;
}