jQuery Effect - Pulsate Effect



Description

The Pulsate effect can be used with effect() method. This pulsates the opacity of the element multiple times.

Syntax

Here is the simple syntax to use this effect −

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

Parameters

Here is the description of all the arguments −

  • times − Times to pulsate. Default is 3.

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

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() {

            $("#button").click(function(){
               $(".target").effect( "pulsate", {times:5}, 3000 );
            });
				
         });
			
      </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"> Pulsate </button>

      <div class = "target">
      </div>
   </body>
</html>

This will produce following result −

jquery-effects.htm
Advertisements