Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css animated skills bar

<div class="skills">
    <div class="skills-bar">
        <div class="bar">
            <div class="info">
                <span>CSS</span>
            </div>
            <div class="progress-line">
                <span class="css"></span>
            </div>
        </div>
        <div class="bar">
            <div class="info">
                <span>HTML</span>
            </div>
            <div class="progress-line">
                <span class="html"></span>
            </div>
        </div>
        <div class="bar">
            <div class="info">
                <span>PYTHON</span>
            </div>
            <div class="progress-line">
                <span class="python"></span>
            </div>
        </div>
        <div class="bar">
            <div class="info">
                <span>JAVASCRIPT</span>
            </div>
            <div class="progress-line">
                <span class="javascript"></span>
            </div>
        </div>
        <div class="bar">
            <div class="info">
                <span>BOOTSTRAP</span>
            </div>
            <div class="progress-line">
                <span class="bootstrap"></span>
            </div>
        </div>
    </div>
</div>
Comment

css animated skills bar

body {
  background: #09f;
}

.skills {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.skills-bar {
  padding: 25px 30px;
}

.skills-bar .bar {
  margin: 25px 0;
}

.skills-bar .bar .info span {
  font-size: 1rem;
  font-weight: 500;
}

.skills-bar .bar .info {
  margin-bottom: 8px;
  color: #07374a;
}

.skills-bar .bar .progress-line {
  position: relative;
  height: 10px;
  width: 550px;
  background: #f0f0f0;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

.bar .progress-line span {
  position: absolute;
  background: #09f;
  height: 100%;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  text-transfrom: uppercase;
  animation: animate 1s 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

@keyframes animate {
  100% {transform: scaleX(1);}
}

.progress-line .html { width: 80%; }
.progress-line .css { width: 70%; }
.progress-line .javascript { width: 55%; }
.progress-line .bootstrap { width: 90%; }
.progress-line .python { width: 85%; }

.bar .progress-line span::before {
  position: absolute;
  content: '';
  height: 0;
  right: 0;
  top: -14px;
  width: 0;
  border: 7px solid transparent;
  border-bottom-width: 0px;
  border-right-width: 0px;
  border-top-style: #f0f0f0;
  border-top-color: #07374a;
}

.bar .progress-line span::after {
  position: absolute;
  right: 0;
  top: -28px;
  color: #f0f0f0;
  font-size: 12px;
  font-weight: 700;
  background: #07374a;
  padding: 1px 8px;
  border-radius: 3px;
}

.progress-line .html::after { content: "80%"; }
.progress-line .css::after { content: "70%"; }
.progress-line .javascript::after { content: "55%"; }
.progress-line .bootstrap::after { content: "90%"; }
.progress-line .python::after { content: "85%"; }

/* ////........Media Query........//// */
@media (max-width: 700px) {
  .skills{ width: 80%; }
  .skills-bar .bar .progress-line{ width: 100%; }
}
Comment

PREVIOUS NEXT
Code Example
Css :: website make text not highlightable 
Css :: css animation loop 
Css :: how to align divs in a row 
Css :: css smooth text shadow 
Css :: set border color of svg 
Css :: remove border between td 
Css :: No utility classes were detected in your source files. If this is unexpected, double-check the `content` option in your Tailwind CSS configuration. 
Css :: css center grid 
Css :: input checkbox size css 
Css :: css remove list indent 
Css :: how to use bulma in gatsby 
Css :: css content image 
Css :: how to enlarge image when hover on in css 
Css :: checkbox input in css 
Css :: media screen 
Css :: jquery css multiple 
Css :: center a div 
Css :: ngx-charts css 
Css :: css center div vertically 
Css :: css invert columns 
Css :: Conditionally loading resources with media queries 
Css :: perimeter around my background image 
Css :: npm scss 
Css :: css text outline 
Css :: style scroll bar css 
Css :: css regions 
Css :: how to compile scss to css minify css 
Css :: How to make a round corner in CSS 
Css :: background shorthand css 
Css :: html5 input required length 
ADD CONTENT
Topic
Content
Source link
Name
8+1 =