Contact Us
We have top-notch technology and teams, and are committed to providing customers with customized and comprehensive IoT solutions to help you
achieve digital transformation and business improvement.
document.addEventListener("DOMContentLoaded", function () {
const jumpButtons = document.querySelectorAll(".jump-button");
function scrollToElement(event) {
event.preventDefault();
const targetId = event.currentTarget.getAttribute("href");
const targetElement = document.querySelector(targetId);
window.scrollTo({
top: targetElement.offsetTop - 20,
behavior: "smooth",
});
}
jumpButtons.forEach((button) => {
button.addEventListener("click", scrollToElement);
});
});