Tema: efecto raro
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 10/11/2009, 12:47
Avatar de destor77
destor77
 
Fecha de Ingreso: noviembre-2004
Ubicación: Gálvez, Santa Fe, Argentina
Mensajes: 2.654
Antigüedad: 20 años
Puntos: 43
efecto raro

hola:
en esta pagina: http://www.oniricosistemas.com.ar/pr...ules=portfolio

tengo armado un js para que al pulsar sobre algun nº me cargue una imagen, todo anda bien salvo que cada vez que se hace click en un nº y carga la imagen correspondiente la pagina se sube sola, y no logro entender porque sucede.

Alguien me podría decir que estoy haciendo mal?

el js es:
Código javascript:
Ver original
  1. $(".thumb a").click(function(){
  2.         var imgHref = $(this).attr('title');  //get the src of the thumbnail
  3.         $(".thumb a").removeClass("selected");  //remove .selected class from all other links
  4.         $(this).addClass("selected");  //add .selected class to current link
  5.         $(".big").stop();
  6.         $(".big").stop().fadeTo(700, 0, function() {  //fade image out
  7.             $('.big').attr('src', imgHref );  //give new image a src attribute
  8.             $('.bighref').attr('href', 'big/' + imgHref );
  9.  
  10.         }).fadeTo("slow", 1);  //fade the image in
  11.     },$(".thumb a").mouseout = function(){    //for onmouseout not used here
  12.     });
  13.    
  14.     $(".thumb2 a").click(function(){
  15.         var imgHref = $(this).attr('title');  //get the src of the thumbnail
  16.         $(".thumb2 a").removeClass("selected");  //remove .selected class from all other links
  17.         $(this).addClass("selected");  //add .selected class to current link
  18.         $(".big2").stop();
  19.         $(".big2").stop().fadeTo(700, 0, function() {  //fade image out
  20.             $('.big2').attr('src', imgHref );  //give new image a src attribute
  21.             $('.bighref2').attr('href', 'big/' + imgHref );
  22.  
  23.         }).fadeTo("slow", 1);  //fade the image in
  24.     },$(".thumb2 a").mouseout = function(){    //for onmouseout not used here
  25.     });

o si conocen alguna mejor forma de hacerlo...

saludos y desde ya muchas gracias