How can I use setinterval() for css animation?
For example, in the example below, I want the div to come with animation after 3000ms. How do I do this?
Can I get it starting from bottom 0, like the price segment that changes when I choose the minute and day as on this page?
<div><span>$</span>2.000</div>
div {
  font-size: 42px;
  position: relative;
  animation: mymove 0.3s;
  animation-timing-function: ease-in-out;
}
div span{
    font-size: 24px;
    padding-right: 5px;
}
@keyframes mymove {
  0% {
    bottom: -70px;
    }
  100% {
    bottom: 0px;
    }
}
 
    