Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div class="progress">
    <div style='width: 30%'></div>
  </div>
</body>
</html>
 
var cur = 0;
var speed = 0;
var progress = document.querySelector('.progress div');
setInterval(function() {
  progress.style.width = cur + '%';
  
  // рюшечки для живого заполнения
  var sign = Math.random() > 0.5 ? 1 : -1;
  
  if(speed > 0) speed += sign * Math.random() * 0.2;
  if(speed <= 0) speed = 0.01;
  
  if(cur > 100) {
    cur = 0;
    speed = 0;
  } else {
    cur += speed;
  }
}, 10);
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
JWo1Fpro
0viewers