// //плавная прокрутка до блока js
const anchors = document.querySelectorAll('a[data-target^="anchor"]');
for (let anchor of anchors) {
anchor.addEventListener("click", function(e) {
e.preventDefault(); //отмена стандартного поведения элемента
const sectionTarget = anchor.getAttribute("href");
let targetOffset = document.querySelector(""+sectionTarget).offsetTop - 150;
window.scrollTo({
top: targetOffset,
behavior: "smooth"
});
});
}
//https://codepen.io/vic4884/pen/rNVRxPM?editors=1010
//jquery
//https://codepen.io/vic4884/pen/wvaOGBV?editors=0010