CSS3 animation: Number Count Up? -
i'm trying create count-up animation using css3 starts @ number "x" , counts @ set interval +1 using animation sort of this.
i know possible use animation-duration line animation length, , set animation-iteration-count infinite, possible make load "x+1" on each restart of animation?
thanks!
it maybe done pseudo-element animate content attribute, support of css animations on pseudo-elements still sketchy.
a js-free solution put couting numbers in html , animate between with
-webkit-animation-timing-function: steps(x); example here: jsfiddle
depending on feelings towards markup go js solution (there's plenty out there).
Comments
Post a Comment