We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
第181天 请使用纯HTML制作一个进度条
The text was updated successfully, but these errors were encountered:
<progress value="70" max="100">70 %</progress>
Sorry, something went wrong.
max属性表示进度条的进度最大值,如果有此值,必须是大于0的有效浮点数。max的默认值是1. value属性表示进度条完成的进度之,value值的范围为0-max之间。如果没有设置max属性,那么value属性值的范围要在0-1之间。
<progress max='100'> ----- 加载状态条显示 <progress value='70' max='100'> ----- 正常显示
因各个浏览器UI表现不统一,实际业务中极少用原生progress
背景色渐变
No branches or pull requests
第181天 请使用纯HTML制作一个进度条
The text was updated successfully, but these errors were encountered: