progress bar style : demo 68

HTML5

65%

CSS3

87%

J-Query

55%

PHP

95%

HTML

                        

HTML5

65%

CSS3

87%

CSS

                        .progress-title{
                            font-size: 18px;
                            font-weight: 700;
                            color: #000;
                            text-transform: uppercase;
                            letter-spacing: 2px;
                            margin: 0 0 30px;
                        }
                        .progress{
                            height: 10px;
                            background: #000;
                            border-radius: 10px;
                            box-shadow: none;
                            margin-bottom: 40px;
                            overflow: visible;
                        }
                        .progress .progress-bar{
                            background: #fff;
                            box-shadow: none;
                            border-radius: 0;
                            border-top-width: 10px;
                            border-style: dotted;
                            position: relative;
                            -webkit-animation: animate-positive 2s;
                            animation: animate-positive 2s;
                        }
                        .progress .progress-value{
                            font-size: 18px;
                            font-weight: 700;
                            color: #000;
                            position: absolute;
                            top: -32px;
                            right: -5px;
                        }
                        @-webkit-keyframes animate-positive{
                            0%{ width: 0; }
                        }
                        @keyframes animate-positive{
                            0%{ width: 0; }
                        }
                    
License Terms