el problema viene aca:
Código HTML:
<a href="imagen.png" class="preview"><img src="miniaturas/imagen.png" /></a>
al apretar sobre la imagen, ya que tiene un vinculo, me manda a la foto sola y eso no tiene que pasar, me debería mandar a una página... probé cambiando el class del preview a la imagen pero no obtuve resultado...
básicamente el script es lo mismo que el de templatemonster.com, cuando se aprieta en la imagen te redirecciona a la página del template, en mi caso, redireccionaria a cualquier otra página,
aca les dejo el script que bajé
Código HTML:
this.imagePreview = function(){ /* CONFIG */ xOffset = 176; yOffset = -+430; // these 2 variable determine popup's distance from the cursor // you might want to adjust to get the right result /* END CONFIG */ $(".preview").hover(function(e){ this.t = this.title; this.title = ""; var c = (this.t != "") ? "<br/>" + this.t : ""; $("body").append("<p id='preview'><img src='"+ this.href +"' alt='Cargando...' />"+ c +"</p>"); $("#preview") .css("top",(e.pageY - xOffset) + "px") .css("left",(e.pageX + yOffset) + "px") .fadeIn("fast"); }, function(){ this.title = this.t; $("#preview").remove(); }); $(".preview").mousemove(function(e){ $("#preview") .css("left",(e.pageX + yOffset) + "px"); }); }; // starting the script on page load $(document).ready(function(){ imagePreview(); });