Home >Web Front-end >HTML Tutorial >Application of progress bar
93909c483cbbfb94ac4f2001d05e6617
<!DOCTYPE html> <html> < head > <meta char set ="utf-8"> <title></title> </head> <body> <p>下载进度:</p> <progress value="33" max="100"></progress> <p>其实一个<progress>标签就实现了一个进度条 <br/>并且我们可以控制进度利用的是value这个 属性 ,max表示最大的长度</p> </body> </html>
a6845172bdb83035c7d7c6b1b1d96cb4 We still use this one when we represent the progress bar. Tag-->
The above is the detailed content of Application of progress bar