這篇文章給大家分享的是有關(guān)怎么使用css3實(shí)現(xiàn)條形進(jìn)度條效果的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考。一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)主營信州網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,APP應(yīng)用開發(fā),信州h5微信小程序搭建,信州網(wǎng)站營銷推廣歡迎信州等地區(qū)企業(yè)咨詢
使用css3實(shí)現(xiàn)條形進(jìn)度條效果原理
首先實(shí)用HTML構(gòu)建所需的兩個(gè)div,利用position:absolute使得兩個(gè)div重合,根據(jù)要求區(qū)別不一樣的顏色。
利用keyframe屬性使得重合的進(jìn)度條移動(dòng)起來,再用animation進(jìn)行動(dòng)畫控制,語法為@keyframes animationname {keyframes-selector {css-styles;}}
ps:如果有對以上知識不了解的小伙伴請查閱本站的相關(guān)文章。
如何使用css3實(shí)現(xiàn)圖片的自動(dòng)輪播特效(附完整代碼)
使用css3實(shí)現(xiàn)條形進(jìn)度條效果代碼
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="initial-scale=1"> <style> .process-bar { width:100px; display:inline-block; *zoom:1; } .pb-wrapper { border:1px solid #cfd0d2; position:relative; background:#cfd0d2; border-radius: 8px; } .pb-container { height:12px; position:relative; left:-1px; margin-right:-2px; font:1px/0 arial; padding:1px; } .pb-highlight { position:absolute; left:0; top:0; _top:1px; width:100%; opacity:0.6; filter:alpha(opacity=60); height:6px; background:white; font-size:1px; line-height:0; z-index:1 } .pb-text { width:100%; position:absolute; left:0; top:0; text-align:center; font:10px/12px arial; color:black; font:10px/12px arial } </style> </head> <body> <div class="process-bar skin-green"> <div class="pb-wrapper"> <div class="pb-highlight"></div> <div class="pb-container"> <div class="pb-text">50%</div> <div class="pb-value" style="height: 100%;width: 50%;background: #19d73d;border-radius: 8px;"></div> </div> </div> </div> </body> </html>
效果如圖所示
感謝各位的閱讀!關(guān)于怎么使用css3實(shí)現(xiàn)條形進(jìn)度條效果就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
分享標(biāo)題:怎么使用css3實(shí)現(xiàn)條形進(jìn)度條效果
標(biāo)題鏈接:http://vcdvsql.cn/article30/gjipso.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站策劃、小程序開發(fā)、微信小程序、網(wǎng)站營銷、網(wǎng)站收錄、
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)