“Role até o topo em jQuery” Respostas de código

JQuery Roll to Top

$("my-element").click(function () {
  $("html, body").animate({
    scrollTop: 0
  }, 1000)
})
Programming Is Fun

JQuery Roll até o topo da div

$('#DIV_ID').scrollTop(0);
C0W

SCROOL TO TOP JQUERRY

$("a[href='#top']").click(function() {
  $("html, body").animate({ scrollTop: 0 }, "slow");
  return false;
});
Strange Swan

Role até o topo em jQuery

window.scrollTo({ top: 100, left: 100, behavior: 'smooth' });
Bibhu

role para cima

	$("#scroll_icon").click(function()
	{
		jQuery('html,body').animate({scrollTop:0},2000);
	})
Colorful Caracal

Respostas semelhantes a “Role até o topo em jQuery”

Perguntas semelhantes a “Role até o topo em jQuery”

Procure respostas de código populares por idioma

Procurar outros idiomas de código