Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/04/2011, 06:50
Dany_s
 
Fecha de Ingreso: diciembre-2009
Ubicación: Misiones
Mensajes: 867
Antigüedad: 14 años, 5 meses
Puntos: 65
Respuesta: jquery scrollTo

y hay varias opciones pero la mas básica es por ejemplo:

Código HTML:
Ver original
  1.     <head>
  2.         <title>Ejemplo</title>
  3.         <script src="jquery.js"></script>
  4.         <script src="jquery.scrollTo-min.js"></script>
  5.         <script>
  6.  
  7.         $(function(){
  8.             $("body").scrollTo(100, 1000);
  9.         });
  10.  
  11.         </script>
  12.         <style>
  13.             body{height:1500px}
  14.             div{background:red;}
  15.         </style>
  16.     </head>
  17.     <body>
  18.         <div>algo</div>
  19.     </body>
  20. </html>

$("elementoScroll").scrollTo(posicionOubicacion, tiempo);