用css完成圓形進(jìn)度條
發(fā)表時(shí)間:2024-05-08 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]利用純css實(shí)現(xiàn)進(jìn)度條小應(yīng)用,可以放在其他的頁面使用也可以自己研究~免費(fèi)提供源碼~~代碼:<!DOCTYPE html><html><head><meta charset="UTF-8"><title>PHP中文網(wǎng)&l...
利用純
css實(shí)現(xiàn)
進(jìn)度條小應(yīng)用,可以放在其他的頁面使用也可以自己研究~免費(fèi)提供
源碼~~
代碼:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PHP中文網(wǎng)</title>
<style>
*{
margin: 0;
padding: 0;
}
.progress-ring{
width: 160px;
height: 160px;
border:20px solid green;
border-radius: 50%;
box-sizing: border-box;
position: absolute;
top: 0;
left: 0;
}
.progress-track{
width: 160px;
height: 160px;
border:20px solid green;
border-radius: 50%;
box-sizing: border-box;
position: absolute;
clip: rect(0px,80px,160px,0px);
top: -20px;
left: -20px;
}
.progress-left{
position:relative;
width: 160px;
height: 160px;
border:20px solid goldenrod;
border-radius: 50%;
box-sizing: border-box;
position: absolute;
clip: rect(0px,80px,160px,0px);
top: -20px;
left: -20px;
transform: rotate(3.6deg);
transition: transform 2s linear;
animation:mymove 3s linear forwards;
}
.progress-right{
width: 160px;
height: 160px;
border:20px solid goldenrod;
border-radius: 50%;
box-sizing: border-box;
position: absolute;
clip: rect(0px,80px,160px,0px);
top: -20px;
left: -20px;
transform: rotate(180deg);
opacity: 0;
animation: toggle 0s ease 1.5s forwards ;
}
.progress-cover{
position:relative;
width: 160px;
height: 160px;
border:20px solid green;
border-radius: 50%;
box-sizing: border-box;
position: absolute;
clip: rect(0px,80px,160px,0px);
top: -20px;
left: -20px;
opacity: 1;
animation: toggleq 0s ease 1.5s forwards ;
}
@keyframes mymove{
from{transform: rotate(0deg)}
to{transform: rotate(360deg)}
}
@keyframes toggle{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes toggleq{
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
</style>
</head>
<body>
<div class="progress-ring">
<div class="progress-track"></div>
<div class="progress-left"></div>
<div class="progress-right"></div>
<div class="progress-cover"></div>
<div class="inn"></div>
</div>
</body>
</html>
免費(fèi)拿去研究吧!更多好的源碼盡在PHP中文網(wǎng),關(guān)注我們給你好看哦~
相關(guān)推薦:
css 、jquery實(shí)現(xiàn)3d立體旋轉(zhuǎn)
css波紋動(dòng)畫
css實(shí)現(xiàn)會(huì)動(dòng)的貓臉
以上就是用css實(shí)現(xiàn)圓形進(jìn)度條的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
網(wǎng)站建設(shè)是一個(gè)廣義的術(shù)語,涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護(hù)的網(wǎng)站。