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>
    #my-element {
      background-color: orange;
      width: 100px;
      height: 100px;
      margin: 30%;
    }
    #word {
      font-size: 120%;
      top: 30%;
      position: absolute;
    }
    #spin {
      display: none;
    }
  </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>
    $(function() {
       //Complete Animation within half a second
      $('#my-element').velocity({ scale: 3, opacity: 1, rotateZ: "360deg" }, {duration: 500});
    });
  </script>
</head>
<body>
  <div id="my-element">    
    <div id="word">Enlarge & Zoom-in Spin</div>
  </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