counter style : demo 152

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: #FFA50A;
                            font-family: 'Poppins', sans-serif;
                            text-align: center;
                            width: 210px;
                            height: 210px;
                            margin: 0 auto;
                            position: relative;
                            z-index: 1;
                        }
                        .counter:before{
                            content: "";
                            background: #FFA50A;
                            width: 88%;
                            height: 88%;
                            border-radius: 20px 50px;
                            position: absolute;
                            bottom: 0;
                            right: 0;
                            z-index: -1;
                        }
                        .counter .counter-icon{
                            color:#fff;
                            font-size: 28px;
                            line-height: 25px;
                            position: absolute;
                            bottom: 10px;
                            right: 15px;
                        }
                        .counter .counter-content{
                            background-color: #fff;
                            height: 92%;
                            width: 92%;
                            padding: 50px 15px;
                            border-radius: 50%;
                            box-shadow: 0 0 10px rgba(0,0,0,0.3);
                        }
                        .counter h3{
                            color: #777;
                            font-size: 22px;
                            font-weight: 400;
                            line-height: 25px;
                            text-transform: uppercase;
                            margin: 0 0 5px;
                        }
                        .counter .counter-value{
                            font-size: 33px;
                            font-weight: 600;
                            display: block;
                        }
                        .counter.blue{ color: #1abcb1; }
                        .counter.blue:before{ background: #1abcb1; }
                        .counter.green{ color: #13af13; }
                        .counter.green:before{ background: #13af13; }
                        .counter.purple{ color: #5E0D99; }
                        .counter.purple:before{ background: #5E0D99; }
                        @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