html
html
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<script src="https://code.jquery.com/jquery-3.1.1.js"></script>
</head>
<body>
<progress value="0" min="0" max="100" id="progress"></progress>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
body {
}
#progress{
position:absolute;
top:50%;left:50%;
transform:translate(-50%,-50%);
background: rgba(0,0,0,0.3);
border-radius:2px;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
4
5
6
7
$(function(){
var bar = $("#progress");
setInterval(function anim(){
var rnd = Math.random() * 100;
bar.animate({value:rnd},1000);
},1000)
})
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run