I have a large animation with smaller parts so that it can repeat infinitely.
@-webkit-keyframes doubletap {
0% {opacity: 0;}
11% {opacity: 0;}
12.6% {opacity: 1;}
15.625% {opacity: 0;}
18.65% {opacity: 1;}
18.75% {opacity: 0;}
94% {opacity: 0;}
95%{opacity: 1}
97.5%{opacity: 0;}
99%{opacity: 1;}
100% {opacity: 0;}
}
would it be read as those percents exactly or does it round to the nearest full number or ignore the decimal altogether? It says nothing about this on MDN or anywhere else I can find.