Advertisement
MEI-BoatRider

progress bar

Feb 26th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.56 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <style type="text/css">
  5. progress[value] {
  6.   /* Reset the default appearance */
  7.     -webkit-appearance: none;
  8.     appearance: progress-bar;
  9.     width: 400px;
  10.     height: 25px;
  11. }
  12. </style>
  13. <script lang = "JavaScript">
  14. function pro() {
  15.     for(var x=1; x<51; x++) {
  16.         document.write("<progress class = \"w3-padding w3-round\" value = \""+x+"\" max = \"50\">"+"</progress> <br/>");
  17.     }
  18. }
  19. pro();
  20. </script>
  21. </head>
  22. <body>
  23. <progress class = "w3-padding w3-round" max = "100" value = "20"></progress>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement