Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<html>
<head>
<script type="text/javascript"  src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
   <script type="text/javascript"  src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
<style type="text/css">
#button{
     color:#fff;
     font-size: 14px;
     position:relative;
     left:20%;
     width:50px;
     height:50px;
     line-height:3.5em;
     background-color:red;
     background-size:100% 100%;
     text-align:center;
     cursor: pointer;    
} 
</style>
</head>
<script type="text/javascript">
   
   $(document).ready(function() {
      $("#button").mouseover(function(){
         $("#button").effect( "bounce", {times:3}, 300 );
      });
      
   });
</script>
<body>
<div id = "button">button</div>
</body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers