jQuery Effect - Drop Effect



Description

The Drop effect can be used with show/hide/toggle. This drops the element away or shows it by dropping it in.

Syntax

Here is the simple syntax to use this effect −

selector.hide|show|toggle( "drop", {arguments}, speed );

Parameters

Here is the description of all the arguments −

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

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

Example

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

<html>
   <head>
      <title>The jQuery Example</title>
      <script type = "text/javascript" 
         src = "https://www.tutorialspoint.com/jquery/jquery-3.6.0.js">
      </script>
		
      <script type = "text/javascript" 
         src = "https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js">
      </script>
		
      <script type = "text/javascript" language = "javascript">
   
         $(document).ready(function() {

            $("#hide").click(function(){
               $(".target").hide( "drop", {direction: "up"}, 1000 );
            });

            $("#show").click(function(){
               $(".target").show( "drop", {direction: "down"}, 1000 );
            });
				
         });
			
      </script>
		
      <style>
         p {background-color:#bca; width:200px; border:1px solid green;}
      </style>
   </head>
	
   <body>
      <p>Click on any of the buttons</p>
		
      <button id = "hide"> Hide </button>
      <button id = "show"> Show</button> 
		
      <div class="target">
         <img src = "../images/jquery.jpg" alt = "jQuery" />
      </div>
   </body>
</html>

This will produce following result −

jquery-effects.htm
Advertisements