jQuery Bounce Effect

« Previous Chapter Next Chapter »

Description:

The Bounce effect can be used with effect() method. This bounces the element multiple times, vertically or horizontally

Syntax:

Here is the simple syntax to use this effect:

Example

selector.effect( "bounce", {arguments}, speed );
                                        

Parameters:

Here is the description of all the arguments:

  • direction: The direction of the effect. Can be "up", "down", "left", "right". Default is "up".

  • distance: Distance to bounce. Default is 20

  • mode: The mode of the effect. Can be "show", "hide" or "effect". Default is "effect".

  • times: Times to bounce. Default is 5.

Example:

Following is a simple example a simple showing the usage of this effect:

Example

<html>
<head>
   <script type="text/javascript"  src="../../js/jquery-2.2.0.js"></script>
   <script type="text/javascript" 
   src="/jquery/jquery-ui-1.7.2.custom.min.js"></script>
   <script type="text/javascript" language="javascript">
   
    $(document).ready(function() {
      $("#button").click(function(){
         $(".target").effect( "bounce", 
          {times:3}, 300 );
      });
   });
   </script>
   <style>
      p {
           background-color:#bca;
           width:200px; 
           border:1px solid green; 
        }
     div{ width:100px; 
            height:100px; 
            background:red;  
        }
  </style>
</head>
<body>
   <p>Click the button</p>
   <button id="button"> Bounce </button>
   <div class="target">
   </div>
  
</body>
</html>
                                        
Code It Online

« Previous Chapter Next Chapter »

Have Any Suggestion? We Are Waiting To Hear from YOU!

Your Query was successfully sent!