Again, its all about how users feel about your application. No matter how complex your business logic and algos, what users see is more important to measure the true value of your work. So making things a little fancy is not wrong in such a way.
If you have some key indicators to be shown in your home page that are important and large enough to notice by default, give them a little bit of fancy animated look. It will certainly impress your users.
To do that, we can easily use JQuery countimator plugin.
Download it and reference from your page after the JQuery.
Now let your numbers to be inside span tags with the class of counter.
And add the following to your js file.
Its done and you will see a nice implementation of countimator in your home page.
Click here for their official demo page.
Happy Coding...
If you have some key indicators to be shown in your home page that are important and large enough to notice by default, give them a little bit of fancy animated look. It will certainly impress your users.
To do that, we can easily use JQuery countimator plugin.
Download it and reference from your page after the JQuery.
<script src="script/countimator/jquery.countimator.min.js" type="text/javascript"></script>
Now let your numbers to be inside span tags with the class of counter.
<span class="counter" >310.25</span>
And add the following to your js file.
$(function () {
$(".counter").countimator();
});
Its done and you will see a nice implementation of countimator in your home page.
Click here for their official demo page.
Happy Coding...