Skip to content

Instantly share code, notes, and snippets.

@kompuser
Created April 14, 2016 12:00
Show Gist options
  • Save kompuser/20d706918ca88273c71eb37b0121b161 to your computer and use it in GitHub Desktop.
Save kompuser/20d706918ca88273c71eb37b0121b161 to your computer and use it in GitHub Desktop.
LNdeLN
<div id="salaries"></div>
$({
salaries: 1
}).animate({
salaries: 30
}, {
duration: 4000,
step: function() {
$('#salaries').text(Math.ceil(this.salaries));
},
});
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
#salaries {
font-size: 2em;
color: orange;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment