“gulir jQuery ke div tertentu” Kode Jawaban

gulir jQuery ke div tertentu

/* HTML LAYOUT */
<div class="my-div" id="login-section"></div>
/* JQUERY Code*/
$(".my-menu-link").click(function () {
  $("html, body").animate({
    scrollTop: $("#" + $(this).attr("id")).offset().top
  }, 500) /* 500 milliseconds*/
  /*
    Hint:
    $("#" + $(this).attr("id")) => #login-section
    so that html will scroll to #login-section which is our specific div
  */
})
Programming Is Fun

Gulir ke Div JQuery

$('html,body').animate({scrollTop: $("#div-you-are-scrolling-too").offset().top},'slow');
Smoke

Jawaban yang mirip dengan “gulir jQuery ke div tertentu”

Pertanyaan yang mirip dengan “gulir jQuery ke div tertentu”

Lebih banyak jawaban terkait untuk “gulir jQuery ke div tertentu” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya