Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!doctype html>
<html>
<head>
  <style>
  @keyframes nodeInserted {
    from {
      outline-color: #000;
    }
    to {
      outline-color: #001;
    }
  }
  .mol-mad-ad {
    animation-duration: 0.1s;
    animation-name: nodeInserted;
  }
  </style>
  <script>
  console.time('inline');
  console.time('animationstart');
  console.time('DOMContentLoaded');
  document.addEventListener('DOMContentLoaded', () => {
    console.timeEnd('DOMContentLoaded');
  });
  document.addEventListener('animationstart', () => {
    console.timeEnd('animationstart');
  }, false);
  </script>
</head>
<body>  
  <div class='mol-mad-ad' id='billboard'>
    <script>
      console.timeEnd('inline');
    </script>
  </div>
</body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers