2018-2020 খাঁটি জেএস:
উপাদানটিতে স্ক্রোল করার খুব সুবিধাজনক উপায় রয়েছে:
el.scrollIntoView({
behavior: 'smooth', // smooth scroll
block: 'start' // the upper border of the element will be aligned at the top of the visible part of the window of the scrollable area.
})
তবে যতদূর আমি বুঝতে পারি তার নীচের বিকল্পগুলির মতো ভাল সমর্থন নেই।
পদ্ধতি সম্পর্কে আরও জানুন।
যদি প্রয়োজন হয় যে উপাদানটি শীর্ষে রয়েছে:
const element = document.querySelector('#element')
const topPos = element.getBoundingClientRect().top + window.pageYOffset
window.scrollTo({
top: topPos, // scroll so that the element is at the top of the view
behavior: 'smooth' // smooth scroll
})
কোডেপেনের প্রতিবাদের উদাহরণ
আপনি যদি চান যে উপাদানটি কেন্দ্রের মধ্যে রয়েছে:
const element = document.querySelector('#element')
const rect = element.getBoundingClientRect() // get rects(width, height, top, etc)
const viewHeight = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);
window.scroll({
top: rect.top + rect.height / 2 - viewHeight / 2,
behavior: 'smooth' // smooth scroll
});
কোডেপেনের প্রতিবাদের উদাহরণ
সহায়তা:
তারা লিখেছে যে scroll
একই পদ্ধতি scrollTo
, কিন্তু সমর্থন ভাল দেখায় scrollTo
।
পদ্ধতি সম্পর্কে আরও
<a href="#anchorName">link</a>