counter style : demo 182

1963

Web Designing

1854

Web Development

1756

Brand Building

1823

Responsive Design

HTML

(Icons : Fontawesome & CSS Framwork: Bootstrap)
                        
1963

Web Designing

1854

Web Development

CSS

(Fonts required: Montserrat Alternates.)
                    .counter{
                        font-family: 'Montserrat Alternates', sans-serif;
                        text-align: center;
                        position: relative;
                        z-index: 1;
                    }  
                    .counter:before{
                        content: '';
                        background-color: #fff;
                        box-shadow: 0 0 10px rgba(0,0,0,0.15);
                        position: absolute;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        top: 80px;
                        z-index: -1;
                    }
                    .counter .counter-value{
                        color: #fff;
                        background-color: #FC9605;
                        font-size: 33px;
                        font-weight: 700;
                        letter-spacing: 0.5px;
                        line-height: 100px;
                        width: 140px;
                        height: 140px;
                        margin: 0 auto 20px;
                        border-radius: 50%;
                        border: 20px solid #fff;
                        box-shadow: 0 0 10px rgba(0,0,0,0.3);
                        display: block;
                    }
                    .counter h3{
                        color: #fff;
                        background-color: #FC9605;
                        font-size: 17px;
                        font-weight: 600;
                        letter-spacing: 1px;
                        text-transform: capitalize;
                        padding: 30px 12px;
                        margin: 0;
                        box-shadow: 0 0 10px rgba(0,0,0,0.3) inset;
                    }
                    .counter.red .counter-value,
                    .counter.red h3{
                        background-color: #F7531A;
                    }
                    .counter.green .counter-value,
                    .counter.green h3{
                        background-color: #2FAF38;
                    }
                    .counter.blue .counter-value,
                    .counter.blue h3{
                        background-color: #16A8EE;
                    }
                    @media screen and (max-width:990px){
                        .counter{ margin-bottom: 40px; }
                    }   
                    

JavaScript

(Counter depend on jQuery.)
                        

                        $(document).ready(function(){
                            $('.counter-value').each(function(){
                                $(this).prop('Counter',0).animate({
                                    Counter: $(this).text()
                                },{
                                    duration: 3500,
                                    easing: 'swing',
                                    step: function (now){
                                        $(this).text(Math.ceil(now));
                                    }
                                });
                            });
                        });
                    
License Terms