bootstrap自适应多彩简洁进度条效果代码
代码语言:html
所属分类:进度条
代码描述:bootstrap自适应多彩简洁进度条效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/bootstrap.3.3.4.css"> <style type="text/css"> .progress-title { font-size:16px; font-weight:700; color:#333; margin:0 0 20px; } .progress { height:10px; background:#333; border-radius:0; box-shadow:none; margin-bottom:30px; overflow:visible; } .progress .progress-bar { position:relative; -webkit-animation:animate-positive 2s; animation:animate-positive 2s; } .progress .progress-bar:after { content:""; display:inline-block; width:9px; background:#fff; position:absolute; top:-10px; bottom:-10px; right:-1px; z-index:1; transform:rotate(35deg); } .progress .progress-value { display:block; font-size:16px; font-weight:600; color:#333; position:absolute; top:-30px; right:-25px; } @-webkit-keyframes animate-positive { 0% { width:0; } }@keyframes animate-positive { 0% { width:0; } } </style> </head> <body> <div class="container" style="margin-top:100px;"> <div class="row"> <div class="col-md-offset-3 col-md-6"> <h3 class="progress-title&quo.........完整代码请登录后点击上方下载按钮下载查看
网友评论0