Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/06/2013, 10:13
Avatar de herzbazi
herzbazi
 
Fecha de Ingreso: febrero-2012
Mensajes: 612
Antigüedad: 12 años, 8 meses
Puntos: 36
Respuesta: Desplazamiento suave al enlazar a un ancla

yo lo haria algo asi


en el head

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"
type="text/javascript" charset="utf-8"></script>

en el body

<a href="#ancla">Ancla</a>

<div id="ancla">
... contenido
</div>

esto en el head tambien

$(function(){

$('a[href*=#]').click(function() {

if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
&& location.hostname == this.hostname) {

var $target = $(this.hash);

$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');

if ($target.length) {

var targetOffset = $target.offset().top;

$('html,body').animate({scrollTop: targetOffset}, 1000);

return false;

}

}

});

});


prueba si es eso lo que buscas , si te ayude sumame un puntillo jajajaj
__________________
Enseña todo lo que sepas...
Aprende todo lo que puedas..

Última edición por herzbazi; 21/06/2013 a las 10:14 Razón: falto contendio