<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.ProgressBar{
width: 100%;
height: 30px;
background-color: aquamarine;
border-radius: 40px;
}
.progress{
width: 0px;
height: 30px;
background-color: pink;
border-radius: 40px;
text-align: center;
line-height: 30px;
}
</style>
<script src="js/jquery-3.6.0.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
$(function(){
$(".progress").animate({
"width": "99%"
},10000)
});
</script>
</head>
<body>
完成进度 99%
<div class="ProgressBar">
<div class="progress">
99%
</div>
</div>
</body>
</html>
jquery_进度条
最新推荐文章于 2025-04-21 20:36:38 发布