Nitecore UA55 5-Port USB Desktop Adapter
gir deg mulighet til å lade hele fem enheter på en gang. Den tar ikke mye plass, og er lett i vekt.
Spesifikasjoner:
Størrelse: 97.3 x 68.4 x 28.3mm
Vekt: 178.5g
Input: 100-240V~ 50/60Hz 1.5A (MAX)
Output: 5V/10A (2A MAX Per Port) 50W MAX
{
let header = document.querySelector('header'); // Adjust the selector as needed
// Find the tab link element (modify the selector if necessary)
let tabLink = document.querySelector('.__lipscore_tab_link');
if (window.innerWidth < 600) {
tabLink = document.querySelector('.mobile_lipscore_tab_link');
header = document.querySelector('.__mobile-header');
}
const headerHeight = header ? header.offsetHeight : 0; // Get the height of the header
if (tabLink) {
// Dispatch a click event on the tab link
tabLink.click();
setTimeout(() => {
const targetPosition = tabLink.getBoundingClientRect().top + window.scrollY - headerHeight;
window.scrollTo({
top: targetPosition,
behavior: 'smooth' // Optional: for smooth scrolling
});
}, 100)
}
}">