El retraso() es un método incorporado en jQuery que se usa para configurar un temporizador para retrasar la ejecución del siguiente elemento en la cola.
Sintaxis:
$(selector).delay(para1, para2);
Parámetro: Acepta dos parámetros que se especifican a continuación:
- para1: Especifica la velocidad del retardo.
- para2: Es opcional y especifica el nombre de la cola.
Valor devuelto: Devuelve el elemento seleccionado con la velocidad especificada.
Código #1:
En el siguiente código, el temporizador está configurado para todo el bloque.
<html> <head> <script src="https://ajax.googleapis.com/ajax/libs/ jquery/3.3.1/jquery.min.js"></script> <script> <!-- jquery code to demonstrate delay method --> $(document).ready(function() { $("button").click(function() { $("#d1").delay("slow").fadeIn(); $("#d2").delay("fast").fadeIn(); $("#d3").delay(1000).fadeIn(); $("#d4").delay(4000).fadeIn(); }); }); </script> </head> <body> <!-- click on this button --> <button>Click Me!</button> <br> <br> <div id="d1" style="width:50px;height:50px;display: none;background-color:lightgreen;"></div> <br> <div id="d2" style="width:50px;height:50px;display: none;background-color:green;"></div> <br> <div id="d3" style="width:50px;height:50px;display: none;background-color:orange;"></div> <br> <div id="d4" style="width:50px;height:50px;display: none;background-color:yellow;"></div> <br> </body> </html>
Salida:
antes de hacer clic en el botón «Hacer clic en mí» –
Después de hacer clic en el botón «Hacer clic en mí»-
Código #2:
En el siguiente código, se ha demostrado cómo retrasar una animación usando este método.
<html> <head> <script src="https://ajax.googleapis.com/ajax/libs/ jquery/3.3.1/jquery.min.js"></script> <script> $(document).ready(function() { <!-- jQuery code to show the working of delay method --> $("#btn1").click(function() { $("div").animate({ height: "150px" }); $("div").animate({ width: "150px" }); $("div").delay(1200).animate({ width: "300px", padding: "30px" }); }); }); </script> <style> #d { display: block; width: 200px; height: 100px; background-color: green; font-size: 30px; padding: 10px; } </style> </head> <body> <div id="d">GeeksforGeeks !</div> <!--click on this button to show the effect of delay method --> <p> <button id="btn1">Click Me!</button> </p> </body> </html>
Salida:
antes de hacer clic en el botón «Hacer clic en mí» –
Después de hacer clic en el botón «Hacer clic en mí»-
Publicación traducida automáticamente
Artículo escrito por kundankumarjha y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA