Código HTML:
Ver original
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css"> html, body { height:100%; width:100%; margin:0px; padding:0px; } #mensaje { width:560px; position: fixed; top: 50%; left: 50%; margin: -250px 0 0 -280px; } </style> <script type="text/javascript"> function desaparecer(objeto, caida){ $(objeto).animate({ opacity: 0.0, marginTop: caida, }, 500 ).hide("slow"); } function aparecer(objeto, caida){ $(objeto) .animate({ opacity: '0.0', marginTop: "-"+caida, }, 10 ).show() .animate({ opacity: '1.0', marginTop: "0", }, 1000 ); } </script> </head> <body> <div id="mensaje"> <img alt="123" src="http://pruebas.com/images/sinfoto.jpg" /> </div> </body> </html>