counter style : demo 177

Web Designing

1963

Web Development

1854

Brand Building

1756

Responsive Design

1823

HTML

(Icons : Fontawesome & CSS Framwork: Bootstrap)
                        

Web Designing

1963

Web Development

1854

CSS

(Fonts required: Poppins.)
                    .counter{
                        color: #2db7b7;
                        font-family: 'Poppins', sans-serif;
                        text-align: center;
                        width: 210px;
                        height: 210px;
                        padding: 28px 13px 0;
                        margin: 20px auto 0;
                        border-radius: 50%;
                        border: 8px solid #2db7b7;
                        border-bottom-color: transparent !important;
                        position: relative;
                        z-index: 1;
                    }   
                    .counter:before,
                    .counter:after{
                        content: '';
                        background-color: #fff;
                        border-radius: 50%;
                        box-shadow: 0 0 20px -5px rgba(0,0,0,0.5);
                        position: absolute;
                        left: 8px;
                        right: 8px;
                        top: 8px;
                        bottom: 8px;
                        z-index: -1;
                    }
                    .counter:before{
                        background-color: transparent;
                        height: 27px;
                        width: 27px;
                        border: 8px solid #2db7b7;
                        top: -27px;
                        bottom: auto;
                        left: 0;
                        right: 0;
                        margin: 0 auto;
                    }
                    .counter .counter-icon{
                        font-size: 35px;
                        margin: 0 0 10px;
                    }
                    .counter h3{
                        color: #777;
                        font-size: 17px;
                        font-weight: 400;
                        text-transform: uppercase;
                        margin: 0 0 10px;
                    }
                    .counter .counter-value{
                        font-size: 30px;
                        font-weight: 700;
                        display: block;
                    }
                    .counter.green,
                    .counter.green:before{
                        color: #66B065;
                        border-color: #66B065;
                    }
                    .counter.darkblue,
                    .counter.darkblue:before{
                        color: #145A6B;
                        border-color: #145A6B;
                    }
                    .counter.blue,
                    .counter.blue:before{
                        color: #2984CC;
                        border-color: #2984CC;
                    }
                    @media screen and (max-width:990px){
                        .counter{ margin-bottom: 90px; }
                    }   
                    

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