Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  
  <div class=circle1></div>
  
</body>
</html>
 
      .circle1 {
        position:absolute; top:50px; left:50px;
        width: 0px; height: 0px;
        border:1px solid red;
        padding:20px;
        border-radius:50%;
      }
 
$(function() {
  
  $(".circle1").mouseover(function() {
    
    $(this).animate({top:"0", left:"0", width:"100px", height:"100px", opacity: 0}, 200);
    
  }).mouseout(function() {
    
    $(this).animate({top:"50px", left:"50px", width:"0", height:"0", opacity: 1}, 200);
    
  });
  
});
Output

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

Dismiss x
public
Bin info
awardpro
0viewers