我没有使用 javascript 的经验,所以我想知道是否有人知道可以与我的进度条一起使用的脚本。
我的设置是这样的:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>test</title>
<style>
progress {
width: 100%;
height: 5px;
top: 0;
left: 0;
position: absolute;
color: #1990c8;
appearance: none;
-webkit-appearance: none;
-o-appearance: none;
}
progress::-moz-progress-bar {
background: #1990c8;
}
progress::-webkit-progress-value {
background: #1990c8;
}
progress::-webkit-progress-bar {
background: #e1e1e1;
}
</style>
</head>
<body>
<progress id="progressbar" value="50" max="100"></progress>
</body>
</html>
在页面加载时,我希望进度条的值从 0 变为 100%。