Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html lang="en">
<script src="https://rawgit.com/web-animations/web-animations-js/master/web-animations.js"></script>
<body>
  <svg width="350" height="50">
    <rect id="shaft" x="0" y="0" height="50" width="5" style="fill:#ccc;">
    </rect>
  </svg>
  <button onclick="anim()">grow</button>
<script>
var l = 5
function anim() {
  l = l + 5
  var shaft = document.getElementById("shaft")
  var anim = new Animation(shaft, [{width: l}], 1)
  document.timeline.play(anim)
}
</script>
</body>
</html>
Output

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

Dismiss x
public
Bin info
dhublerpro
0viewers