H5 Css3 怎么实现这样一个进度条
发布网友
发布时间:2022-04-22 09:32
我来回答
共1个回答
热心网友
时间:2022-04-19 07:53
<div>
<span>0%</span>
<div/>
div{
width :100px;
height:20px;
}
div>span{
display:inline-block;
width:0;
height:100%;
backgeound:#0f0;
}
<script>
function progress(p){
$(span).css("width":p+"%").html(p+"%")
}
//反复执行这个函数就行了 要动画就把 .css() 改为.stop(true).animate()
<script/>