Dado un elemento HTML y la tarea es agregar un elemento en el documento después de unos segundos usando el efecto fadeIn con la ayuda de JQuery.
Acercarse:
- Seleccione el elemento de destino para agregar el elemento.
- Use uno de los métodos appendTo() o append() para agregar el elemento.
Ejemplo 1: en este ejemplo, el elemento <div> se agrega al elemento <body> mediante el método append() .
<!DOCTYPE HTML> <html> <head> <title> How to append an element in two seconds using jQuery ? </title> <style> #div { background: green; height: 100px; width: 200px; margin: 0 auto; color: white; display: none; } </style> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"> </script> </head> <body style = "text-align:center;"> <h1 style = "color:green;" > GeeksForGeeks </h1> <p id = "GFG_UP" style = "font-size: 19px; font-weight: bold;"> </p> <div id = "div">Div Element.</div> <button onClick = "GFG_Fun()"> click here </button> <p id = "GFG_DOWN" style = "color: green; font-size: 24px; font-weight: bold;"> </p> <script> $('#GFG_UP').text("Click on button to fade in element."); function GFG_Fun() { $('#div').append("body").fadeIn(2000); $('#GFG_DOWN').text("Div fades in after 2 second."); } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Ejemplo 2: en este ejemplo, el elemento <div> se agrega al elemento <p> mediante el método appendTo() .
<!DOCTYPE HTML> <html> <head> <title> How to append an element in two seconds using jQuery ? </title> <style> #div { background: green; height: 100px; width: 200px; margin: 0 auto; color: white; display: none; } </style> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"> </script> </head> <body style = "text-align:center;"> <h1 style = "color:green;"> GeeksForGeeks </h1> <p id = "GFG_UP" style = "font-size: 19px; font-weight: bold;"> </p> <div id = "div">Div Element.</div> <button onClick = "GFG_Fun()"> click here </button> <p id = "GFG_DOWN" style = "color: green; font-size: 24px; font-weight: bold;"> </p> <script> $('#GFG_UP').text("Click on button to fade in element."); function GFG_Fun() { $('#div').appendTo("p").fadeIn(2000); $('#GFG_DOWN').text("Div fades in after 2 second."); } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Publicación traducida automáticamente
Artículo escrito por PranchalKatiyar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA