运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <style> #myProgress { width: 100%; background-color: #ddd; } #myBar { width: 10%; height: 30px; background-color: #04AA6D; text-align: center; line-height: 30px; color: white; } </style> <body> <h1>JavaScript Progress Bar</h1> <div id="myProgress"> <div id="myBar">10%</div> </div> </body> </html>