css单选radio按钮样式css多选框checkbox样式css响应式汉堡菜单(左滑、抽屉)css实现遮罩层弹出效果一组好看的css按钮效果(6种)css实现select下拉选择框css实现选项卡功能css实现下拉菜单css按钮样式代码(16种)css实现手风琴效果css图片轮播效果css进度条样式css实现侧边栏菜单css加载动画css背景动画效果css开关按钮样式(18种)css炫酷的圆形菜单css提示tooltip效果css手风琴_好看的Gallery伸缩效果css表格样式css分段控件导航栏css折角效果css粒子背景动画效果css进度圆圈连线css响应式分页样式代码css各种天气样式动画图标css层叠卡片滑出特效css下拉Dropdown菜单css圆圈按钮tip提示特效css和svg圆圈进度样式代码css动画404页面代码css爱心跳动动画代码css绘制逼真玻璃球效果css模拟开关灯特效创意css网格布局带动画效果css星级打分radio五角星css卡片悬浮翻转特效div上下浮动纯css动画css时间轴样式(timeLine)css文字循环翻滚动画效果css输入框动效css鼠标悬停缩放比例效果css模糊背景毛玻璃效果css实现小球循环跳动动画css实现标签样式Tagscss进度条阴影动画css绘制的小鸟css svg按钮冒泡动画特效css svg蓝色波浪动画特效css创意svg菜单栏水滴动画css文字进度条的实现CSS实现内容折叠/展开效果CSS3手机充电特效css实现鼠标点击拖拽效果CSS实现一个计时器纯CSS渐变绘制 Chrome 图标CSS 渐变来实现波浪动画

css进度条阴影动画

JAVA

65%

PYTHON

87%

J-Query

55%

Go

95%


源码

<div class="container">
<div class="col-md-offset-3 col-md-6">
<div class="progress green">
<h3 class="progress-title">html5</h3>
<div class="progress-bar" style="width:65%; background:#21da9a;">
<div class="progress-value">65%</div>
</div>
</div>
<div class="progress pink">
<h3 class="progress-title">css3</h3>
<div class="progress-bar" style="width:87%; background:#ff1170;">
<div class="progress-value">87%</div>
</div>
</div>
<div class="progress yellow">
<h3 class="progress-title">J-Query</h3>
<div class="progress-bar" style="width:55%; background:#ffa900;">
<div class="progress-value">55%</div>
</div>
</div>
<div class="progress blue">
<h3 class="progress-title">php</h3>
<div class="progress-bar" style="width:95%; background:#294bdc;">
<div class="progress-value">95%</div>
</div>
</div>
</div>
</div>

<style type="text/css">
.container {
padding: 2em;
background: #dbc1af;

}
*, :after, :before {
box-sizing: border-box;
}
.progress {
height: 7px;
background: #e3e3e3;
border-radius: 0;
box-shadow: none;
margin: 40px 0 80px;
overflow: visible;
position: relative;
}

.progress .progress-title {
padding: 5px 10px;
margin: 0;
background: #393a3d;
border-radius: 5px 0 0 5px;
box-shadow: 0 7px 7px rgba(0, 0, 0, 0.4);
font-size: 18px;
font-weight: 700;
color: #fff;
text-transform: uppercase;
position: absolute;
top: -13px;
left: 0;
z-index: 1;
}

.progress .progress-title:after {
content: "";
border-left: 17px solid #393a3d;
border-top: 17px solid transparent;
border-bottom: 17px solid transparent;
position: absolute;
top: 0;
right: -17px;
}

.progress .progress-bar {
box-shadow: none;
border-radius: 0;
position: relative;
-webkit-animation: animate-positive 2s;
animation: animate-positive 2s;
}

.progress .progress-bar:after {
content: "";
width: 20px;
height: 20px;
border-radius: 50%;
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.6);
background: #fff;
position: absolute;
right: -5px;
top: -6px;
}

.progress .progress-value {
width: 45px;
height: 30px;
line-height: 30px;
border-radius: 3px;
background: #393a3d;
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
font-size: 15px;
font-weight: 700;
color: #fff;
text-align: center;
position: absolute;
bottom: 30px;
right: -17px;
}

.progress .progress-value:after {
content: "";
border-top: 7px solid #393a3d;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
position: absolute;
bottom: -7px;
left: 35%;
}

.progress.green .progress-bar:after {
border: 5px solid #21da9a;
}

.progress.pink .progress-bar:after {
border: 5px solid #ff1170;
}

.progress.blue .progress-bar:after {
border: 5px solid #294bdc;
}

.progress.yellow .progress-bar:after {
border: 5px solid #ffa900;
} @keyframes animate-positive {
0% {
width: 0;
}
}
</style>


链接: https://www.fly63.com/course/33_1620