// JavaScript Document function mostrar() { $("#pop1").fadeIn('slow'); } //checkHover $(document).ready(function (){ //Conseguir valores de la img var img_w =641+ 10; var img_h =466+ 28; var alto_pop1=img_h; //Darle el alto y ancho $("#pop1").css('width', img_w + 'px'); $("#pop1").css('height', img_h + 'px'); //Esconder el popup $("#pop1").hide(); //Consigue valores de la ventana del navegador var w = $(this).width(); var h = $(this).height(); //Centra el popup w = (w/2) - (img_w/2); h = 40; // (h/2) - (img_h/2); $("#pop1").css("left",w + "px"); $("#pop1").css("top",h + "px"); //temporizador, para que no aparezca de golpe setTimeout("mostrar()",1500); //Función para cerrar el popup $("#cerrar1").click(function (){ $("#pop1").fadeOut('slow'); }); });