$(document).ready(function() {
$('.thumbs').on('click', '.remaining:not(".open-video")', function(event) {
event.preventDefault();
setTimeout(function () {
MagicZoom.expand('zoom');
}, 300);
setTimeout(function () {
MagicZoom.switchTo('zoom',8);
}, 1000);
});
});
Produkteigenschaften:Powerstack Akku verfügt gegenüber konventionellen Rundzellen-Akkus bei gleichem Spannungsniveau und vergleichbarer Kapazität über folgende Vorteile:Effizienter Stromfluss durch geringere Innenwiderstände führt zu einer deutlich höheren Kraftentfaltung der Maschine bei bestimmten AnwendungenSpürbar längere Laufzeit pro Akku-LadungGroßflächige Flachzellen ermöglichen eine bessere Wärmeableitung und erhöhen so die Anzahl an Ladezyklen und damit die LebensdauerSehr hoher Arbeitsfortschritt durch optimal abgestimmtes 3-Gang-VollmetallgetriebeInnovative, elektronische Drehmomentkupplung sowie präzises 11-stufiges Drehmomentmodul mit zuverlässigem AbschaltmomentTechnische Daten:Leerlaufdrehzahl: 0 - 450 / 1.300 / 2.000 min-1Leerlaufschlagzahl: 0 - 8.600 / 25.500 / 38.250 min-1max. Drehmoment (h / w): 127 / 68 Nmmax. Bohrleistung in Holz / Metall / Stein: 55 / 15 / 16 mmBohrfutterspannweite: 1,5 - 13 mmGewicht (inkl. Akku): 2,3 kgSchalldruckpegel (LPA): 97 (db(A)Schallleistungspegel (LWA): 108 (db(A)K-Wert (Schallleistung): 3,0 (db(A)Vibrationen (bei Bohren in Metall): 2,5 m/s2K-Wert (Vibrationen): 1,5 m/s2Lieferumfang:1x DeWALT Akku-Schlagbohrschrauber 18V, XRP DCD999H2T2x 18 Volt / 5 Ah Powerstack Akkus DCBP518-XJ1x System-Schnellladegerät1x Zusatzhandgriff mit Verlängerung1x Gürtelhaken1x T STAK-Box
- Hersteller
- Stanley Black & Decker Deutschland GmbH
-
Black-u.-Decker-Str. 40,
65510 Idstein,
Deutschland
- 06126/211
DeWALT Akku-Schlagbohrschrauber 18V, XRP DCD999H2T, 2x 5,0 Ah Powerstack + Lader
- Artikel-Nr.: DCD999H2T-QW
- EAN: 5035048806234
- Hersteller: Dewalt

const observer = new MutationObserver(() => {
const el = document.getElementById("delivery-date-template");
if (el) {
el.innerHTML = el.innerHTML.replace(
"Lieferung:",
"Lieferung:"
);
observer.disconnect();
clearTimeout(timeoutId);
}
});
observer.observe(document.body, { childList: true, subtree: true });
const timeoutId = setTimeout(() => observer.disconnect(), 2000);
if(!document.getElementById('paypal-smart-payment-script'))
{
var script = document.createElement("script");
script.type = "module";
script.id = "paypal-smart-payment-script";
script.src = "https://cdn02.plentymarkets.com/qddd911h1zyd/plugin/118/paypal/js/smartPaymentScript.min.js";
script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw");
script.setAttribute("data-user-id-token", "");
script.setAttribute("data-merchant-id", "9NUA4DV8EVBB8");
script.setAttribute("data-currency", "EUR");
script.setAttribute("data-append-trailing-slash", "");
script.setAttribute("data-locale", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "89e8833e7dfb594a166303a4b265a8fd");
document.body.appendChild(script);
} else {
var script = document.getElementById('paypal-smart-payment-script');
script.src = "https://cdn02.plentymarkets.com/qddd911h1zyd/plugin/118/paypal/js/smartPaymentScript.min.js";
script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw");
script.setAttribute("data-user-id-token", "");
script.setAttribute("data-merchant-id", "9NUA4DV8EVBB8");
script.setAttribute("data-currency", "EUR");
script.setAttribute("data-append-trailing-slash", "");
script.setAttribute("data-locale", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "89e8833e7dfb594a166303a4b265a8fd");
}

- Versandkostenfreie Lieferung in DE ab 100€
- Kostenloser Rückversand
$(document).ready(function() {
setTimeout(function () {
if (
window.innerWidth < 1200 &&
$('#m1').length &&
$('#mM').length &&
$('#m1').is(':empty')
) {
$('#mM').appendTo('#m1');
}
}, 1000);
$( window ).resize(function() {
if ($(window).outerWidth() < 1200 ) {
$('#mM').appendTo('#m1');
} else {
$('#mM').appendTo('#m2');
}
});
});
$(function () {
const $links = $('.anchors a');
const nav = document.querySelector('.anchors');
function updateActiveLink() {
const scrollTop = $(document).scrollTop();
$links.each(function (i, link) {
const targetId = $(link).attr('href');
const $target = $(targetId);
if (!$target.length) return;
const top = $target.offset().top;
let bottom;
if (i < $links.length - 1) {
const nextLinkHref = $($links[i + 1]).attr('href');
const $nextTarget = $(nextLinkHref);
bottom = $nextTarget.length ? $nextTarget.offset().top : $(document).height();
} else {
bottom = $(document).height();
}
if (scrollTop >= top - 120 && scrollTop < bottom - 120) {
$links.removeClass('active');
$(link).addClass('active');
scrollNavToLink(link);
return false; // break .each()
}
});
}
function scrollNavToLink(link) {
if (!nav) return;
const linkLeft = link.offsetLeft;
const linkWidth = link.offsetWidth;
const navWidth = nav.offsetWidth;
const scrollTo = linkLeft - (navWidth / 2) + (linkWidth / 2);
nav.scrollTo({ left: scrollTo, behavior: 'smooth' });
}
let scrollTimer;
$(document).on('scroll', function () {
updateActiveLink(); // run immediately
clearTimeout(scrollTimer);
scrollTimer = setTimeout(updateActiveLink, 100); // trailing update
});
updateActiveLink(); // on load
});