X-Power 3A USB-A / USB-C Veggadapter
X-power VQT33 kan brukes til å lade alle USB-enheter.
Adapteren kan hurtiglade med opptil 3A styrke for apparater som har støtte for dette.
Den støtter QuickCharge3.0 på USB-A og PowerDelivery på USB-C utgangen.
Spesifikasjoner
- 220V / EU Plugg
- 5 Watt USB-A (QC3.0) + 15 Watt USB-C (PD), Totalt 20 Watt
- USB-C (PD) - 5V/3A / 9V/2A / 12V/1.5A
- USB-A (QC3.0) - 5V/3A / 9V/2A / 12V/1.5A
- USB-A+USB-C - 5V/3A
Les mer
{
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)
}
}">