See this plugin: http://www.jqueryscript.net/animation/Animating-Numbers-Counting-Up-with-jQuery-Counter-Up-Plugin.html
Implementation:
Insert the following libraries into your code. Donwload the files on the site above. Don’t forget to include Jquery as well:
<script src="js/jquery.counterup.min.js"></script>
<script src="waypoints.min.js"></script>
Set content type within span tag:
<span class=".integers">12345</span>
<span class=".floats">123.45</span>
<span class=".numbers-with-commas">12,345.00</span>
Run the plugin, in the example below it was applied directly to any "span tag":
<script>
jQuery(document).ready(function( $ ) {
$('span').counterUp({
delay: 10, // atraso de 10 ms
time: 1000 // velocidade do contador de 1000 ms
});
});
</script>
The number is not randomly generated, it was placed there. The name of the effect is
FLIP
http://tableless.com.br/introducao-ao-css-3d-flip-card/.– user23124
yes friend more you noticed how he does it count some numbers before inserting them I saw it in jquery plugin however I did not think that one day would need and so I do not remember what name this but I know it has on the site of jquery plugin
– Felipe Henrique
this helps you? http://rendro.github.io/easy-pie-chart/ Note that the count starts from 0 and goes up to the desired number.
– Filipe Moraes
You also have this plugin: http://www.jqueryscript.net/animation/Animating-Numbers-Counting-Up-with-jQuery-Counter-Up-Plugin.html
– Filipe Moraes
opa was that same friend "vlw" but the link with reply to I accept if you want
– Felipe Henrique
A tip, whenever you reply to a comment from someone in your question, press the "@" (arroba) that will appear the user name and select, so they will receive a notification and know that you responded to the comment. For example, @Natan will now receive a notification because I mentioned it in my comment. Tip!
– Filipe Moraes
Opa obrigado @Filipemoraes
– Felipe Henrique