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>
  <link rel="stylesheet" href="http://daneden.github.io/animate.css/animate.min.css">
</head>
<body>
  <div></div>
  <button>Click</button>
</body>
</html>
 
div {
  width: 100px;
  height: 100px;
  background: green;
  border: 2px solid #000;
  border-radius: 50%;
  margin-bottom: 50px;
}
 
var button = document.getElementsByTagName('button')[0];
var div = document.getElementsByTagName('div')[0];
button.addEventListener('click', function() {
  div.classList.add('animated', 'bounceInDown');
  var animationTime = parseInt(window.getComputedStyle(div).WebkitAnimationDuration) * 1000;
  console.log(animationTime);
  setTimeout(function() {
    div.classList.remove('animated', 'bounceInDown');
  }, animationTime);
});
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers