Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/04/2011, 07:13
Dany_s
 
Fecha de Ingreso: diciembre-2009
Ubicación: Misiones
Mensajes: 867
Antigüedad: 14 años, 11 meses
Puntos: 65
Respuesta: Como se llama este methodo...???

es sencillo, cada vez que se mueva el scroll obtenes la posición y moves el div a esa posición

Código HTML:
Ver original
  1.     <head>
  2.         <title>Ejemplo</title>
  3.         <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
  4.         <script>
  5.  
  6.         $(function(){
  7.  
  8.             posInicial = parseInt($('#bloque').css('top'));
  9.             $(window).scroll(function() {
  10.                 top = $(this).scrollTop();
  11.                  $('#bloque').stop().animate({top: (posInicial < top)?top:posInicial  + 'px'}, 500);
  12.            });
  13.  
  14.        });
  15.  
  16.        </script>
  17.         <style>
  18.             body{height:1500px}
  19.             #bloque{background:red; position:absolute; top:100px; height:100px}
  20.         </style>
  21.     </head>
  22.     <body>
  23.         <div id="bloque">algo</div>
  24.     </body>
  25. </html>