Tutorial #23 del curso de Jquery, en este tutorial seguimos viendo los efectos y nos toca ver los efectos: fadeIn y fadeOut estos son similares a los anteriormente vistos.
<!DOCTYPE html> <html lang="es"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Efectos - fadeIn y fadeOut</title> </head> <body> <center> <img src="img/san-valentin.jpg" alt=""> <br> <button id="mostrar">mostrar</button> <button id="ocultar">ocultar</button> </center> <script src="js/jquery-2.1.3.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $('#mostrar').click(function(event) { $('img').fadeIn('slow'); }); $('#ocultar').click(function(event) { $('img').fadeOut(3000,function(){ alert("la imágen esta oculta"); }); }); }); </script> </body> </html>