Как сделать, чтобы были отступы между 5? <div class="item-stats"> <h2 class="title-stats-h2">Tech support response time:</h2> <h3 class="title-stats-h3">from <span id="value3"> 5 </span> minutes</h3> </div> HTML <div class="item-stats"> <h2 class="title-stats-h2">Tech support response time:</h2> <h3 class="title-stats-h3">from <span id="value3"> 5 </span> minutes</h3> </div> anime({ targets: '#value3', innerHTML: [0, 5], easing: 'linear', duration: 4000, round: 1 // Will round the animated value to 1 decimal }); JS anime({ targets: '#value3', innerHTML: [0, 5], easing: 'linear', duration: 4000, round: 1 // Will round the animated value to 1 decimal });