“role jQuery para posicionar” Respostas de código

Role até o 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

Obtenha uma posição de rolagem jQuery

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

role jQuery para posicionar

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

Respostas semelhantes a “role jQuery para posicionar”

Perguntas semelhantes a “role jQuery para posicionar”

Mais respostas relacionadas para “role jQuery para posicionar” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código