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>
  <style>
    .group-of-elements {
      background-color: orange;
      width: 100px;
      height: 100px;
      margin: 5%;
    }
  </style>
  <script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
  <script src="//cdnjs.cloudflare.com/ajax/libs/velocity/1.2.2/velocity.min.js"></script>
    <script src="//cdn.jsdelivr.net/velocity/1.2.2/velocity.ui.min.js"></script>
  <script>
    $(function() {
       //Assumes that the UI Pack (velocity.ui.js) is in place
      $('.group-of-elements').velocity('transition.whirlIn', {stagger: 500});
    });
  </script>
</head>
<body>
  <div class="group-of-elements">
  </div>
   <div class="group-of-elements">
  </div>
   <div class="group-of-elements">
  </div>
</body>
</html>
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers