X-Power S4, Batterilader
En smart-lader for opptil 4 batterier (Li-ion og Ni-MH/Ni-CD)
2A lading (totalt), stor skjerm og USB-C tilkobling.
Kompatibel med følgende batterier:
Li-ion: 10400, 14500, 14650, 16340(RCR123), 16650,
17650, 18350, 18490, 18500, 18650, 18700, 20700, 21700, 22500, 22650,
22700, 25500, 26500, 26650, 26700
Ni-MH/Ni-Cd: A, AA, AAA, C, SC, F6
Spesifikasjoner Ni-MH/Ni-CD
Input: DC 5V/2A
Output: 0.5A x 4 batterier
Spesifikasjoner Li-ion
Input: DC 5V/2A
Output: 2.0A x 1 batteri / 1.0A x 2 Batterier / 0.5A x 4 Batterier
{
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)
}
}">