"Social Dashboard"
Bootstrap 3.0.0 Snippet by foreveryo

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <div class="col-md-3"> <div class="list-group"> </a><a href="http://www.facebook.com/cometeelmundo.net" class="list-group-item facebook-like"> <h3 class="pull-right"> <i class="fa fa-facebook-square"></i> </h3> <h4 class="list-group-item-heading count"> 1000</h4> <p class="list-group-item-text"> Facebook Likes</p> </a><a href="http://www.plus.google.com/+CometeelmundoNet" class="list-group-item google-plus"> <h3 class="pull-right"> <i class="fa fa-google-plus-square"></i> </h3> <h4 class="list-group-item-heading count"> 1000</h4> <p class="list-group-item-text"> Google+</p> </a><a href="http://www.twitter.com/_cometeelmundo_" class="list-group-item twitter"> <h3 class="pull-right"> <i class="fa fa-twitter-square"></i> </h3> <h4 class="list-group-item-heading count"> 1000</h4> <p class="list-group-item-text"> Twitter Followers</p> </a> </div> </div> </div> </div>
@import url("http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css"); body { margin-top:20px; } .fa { font-size: 50px;text-align: right;position: absolute;top: 7px;right: 27px;outline: none; } a { transition: all .3s ease;-webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease; } /* Facebook */ a.facebook-like i,.facebook-like h4.list-group-item-heading { color:#3b5998; } a.facebook-like:hover { background-color:#3b5998; } a.facebook-like:hover * { color:#FFF; } /* Google */ a.google-plus i,.google-plus h4.list-group-item-heading { color:#dd4b39; } a.google-plus:hover { background-color:#dd4b39; } a.google-plus:hover * { color:#FFF; } /* Twitter */ a.twitter i,.twitter h4.list-group-item-heading { color:#00acee; } a.twitter:hover { background-color:#00acee; } a.twitter:hover * { color:#FFF; }
// Animate the element's value from x to y: $({ someValue: 0 }).animate({ someValue: Math.floor(Math.random() * 3000) }, { duration: 3000, easing: 'swing', // can be anything step: function () { // called on every step // Update the element's text with rounded-up value: $('.count').text(commaSeparateNumber(Math.round(this.someValue))); } }); function commaSeparateNumber(val) { while (/(\d+)(\d{3})/.test(val.toString())) { val = val.toString().replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,"); } return val; }

Related: See More


Questions / Comments: