📅  最后修改于: 2020-11-04 00:48:18             🧑  作者: Mango
HTML
HTML进度标签是HTML5中的新增功能,因此您必须使用新的浏览器。
HTML
Tag | Description |
---|---|
value | It defines that how much work the task has been completed. |
max | It defines that how much work the task requires in total. |
进度标签应仅用于表示任务的进度,而不能仅用于衡量指标(磁盘速度使用情况)。为此,
让我们看一下没有属性的HTML进度示例。
输出:
让我们看一下带有value和max属性的进度示例。
Downloading progress:
输出:
您可以在进度标签上应用CSS代码。
progress{
width: 300px;
height: 30px;
}
输出:
输出:
Element | Chrome | IE | Firefox | Opera | Safari |
Yes | Yes | Yes | Yes | Yes |