Tutorial #24 del curso de jquery, en este tutorial seguimos viendo los efectos y veremos los efectos: toggle y fadeTo.
<!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 - toggle y fadeTo</title> </head> <body> <center> <img src="img/chibi-anime-valentine.jpg" alt=""> <br> <button id="mostrar">mostrar</button> </center> <center> <img src="img/chibi-anime-valentine.jpg" alt="" id="val"> <br> <button id="ocultar">ocultar</button><button id="mostrar2">mostrar</button> </center> <script src="js/jquery-2.1.3.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $('#mostrar').click(function(event) { $('img').toggle("slow"); }); /* $('#ocultar').click(function(event) { $('#val').fadeTo("slow",0.5); }); $('#mostrar2').click(function(event) { $('#val').fadeTo("slow",0.9); });*/ $('#val').hover(function() { $('#val').fadeTo("slow",0.5); }, function() { $('#val').fadeTo("slow",1); }); }); </script> </body> </html>