We are giving you jquery number counter example with counterup plugin and bootstrap 4. this plugin count number, decimal number,flot number. jquery counter to count up to a target number. usign this counder you can count visitor,user,customer,likes,follower,posts,social media likes and other.

We allows to free snippets of number counter jquery , you can download full code of jquery counter plugin example layout. Here in this post i will give you example of jquery number counter on scroll snippet and you will get simple code of html, css and jquery. In jquery visitor counter example snippet i give you three tab with html, css and js, you can easily get code of number counter jquery plugin layout.


<!doctype html> <html lang="en"> <head> <title>Jquery Counter | Bootstrap 4</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script src="http://cdnjs.cloudflare.com/ajax/libs/waypoints/2.0.3/waypoints.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/Counter-Up/1.0/jquery.counterup.min.js"></script> <link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="custom.css"> </head> <body class="bg-dark"> <div class="container"> <div class="row text-center"> <div class="col-md-10 offset-md-1 col-12 text-white"> <h1>jQuery Counter</h1> <div class="row mt-5"> <div class="col-md-4 col-12"> <div class="counter bg-info rounded mb-2"> <h3 class="text-warning">Total Users</h3> <span>1,88,567</span> </div> </div> <div class="col-md-4 col-12"> <div class="counter bg-info rounded mb-2"> <h3 class="text-warning">Total Rates</h3> <span>9.5634</span> </div> </div> <div class="col-md-4 col-12"> <div class="counter bg-info rounded mb-2"> <h3 class="text-warning">Total Posts</h3> <span>123456</span> </div> </div> </div> </div> </div> </div> </body> </html>
body{ margin-top: 150px; font-family: 'Oswald', sans-serif; } .counter{ height: 150px; padding-top: 30px; } .counter span{ font-size: 25px; }
jQuery(document).ready(function( $ ) { $('.counter span').counterUp({ delay: 10, time: 1000 }); });

Please Subscribe Your Email Address, We Will Notify You When Add New Snippet:





Random Post


Random Blog