“JQuery Scroll to Position” Código de respuesta

Desplácese al elemento jQuery

$('html, body').animate({
  scrollTop: $("#grepperRocks").offset().top
});
Spyder

JQuery Scroll to Element

$("#button").click(function() {
    $([document.documentElement, document.body]).animate({
        scrollTop: $("#elementtoScrollToID").offset().top
    }, 2000);
});
Inexpensive Impala

Obtener posición de desplazamiento jQuery

$(window).scroll(function (event) {
    var scroll = $(window).scrollTop();
    // Do something
});
Evil Eagle

JQuery Scroll to Position

jQuery(document).ready(function($) {
  $('a[href^="#"]').bind('click.smoothscroll',function (e) {
    e.preventDefault();
    var target = this.hash,
        $target = $(target);

    $('html, body').stop().animate( {
      'scrollTop': $target.offset().top-40
    }, 900, 'swing', function () {
      window.location.hash = target;
    } );
  } );
} );
Exuberant Eel

Respuestas similares a “JQuery Scroll to Position”

Preguntas similares a “JQuery Scroll to Position”

Más respuestas relacionadas con “JQuery Scroll to Position” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código