GOTOOLS
MARKEN DEWALT
{
"@context":"http://schema.org/",
"@type":"BreadcrumbList",
"itemListElement": [{"@type":"ListItem","position":1,"item":{"@id":"\/","name":"Home"}},{"@type":"ListItem","position":2,"item":{"@id":"\/marken","name":"MARKEN"}},{"@type":"ListItem","position":3,"item":{"@id":"\/marken\/dewalt","name":"DEWALT"}}]
}
Produktbeschreibung: Das 12-teilige Fräser-Set DT90016-QZ von DeWalt eignet sich für Holz Das Anti-Kickback-Design mit dem speziell geformten Korpus sorgt für ein rückschlag-freies Arbeiten in allen Holzmaterialien Die hochwertigen Hartmetallschneiden mit winkelgenauestem Anschliff eignen sich für den härtesten Einsatz, bei maximaler Lebensdauer Für eine noch höhere Lebensdauer der einzelnen Fräser sind die Kugellager austauschbar In einer praktischen Kunststoff-Klappbox
Technische Daten: Inhalt: 1x Hohlkehlfräser (Ø 12 mm, Radius 6 mm) 1x V-Nutfräser (Ø 12.7 mm, 90°) 1x Zinkenfräser (Ø 14.3 mm, 14°) 1x Hohlkehlfräser mit Anlaufkugellager (Ø 21.5 mm, Radius 6 mm) 1x Profilfräser mit Anlaufkugellager (Ø 27 mm, Radius 4 mm) 1x Fasefräser mit Anlaufkugellager (Ø 28.6 mm, 45°) 1x Nutfräser (Ø 8 mm, Arbeitslänge 20 mm) 1x Nutfräser (Ø 12 mm, Arbeitslänge 20 mm) 1x Nutfräser (Ø 16 mm, Arbeitslänge 20 mm) 1x Bündigfräser mit Anlaufkugellager (Ø 12.7 mm, Arbeitslänge 25.4 mm) 1x Abrundfräser mit Anlaufkugellager (Ø 24.7 mm, Radius 6 mm) 1x Abrundfräser mit Anlaufkugellager (Ø 32.7 mm, Radius 10 mm)
Lieferumfang: 1x DeWALT Hartmetall (HM) Fräser-Set 12-tlg mit 8 mm Schaft DT90016-QZ
Hersteller Stanley Black & Decker Deutschland GmbH
Black-u.-Decker-Str. 40,
65510 Idstein,
Deutschland 06126/211 DeWALT Hartmetall (HM) Fräser-Set 12-tlg mit 8 mm Schaft DT90016-QZ Artikel-Nr.: DT90016-QZ EAN: 5035048538647 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);
DHL Paket
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", "df60a5d4e38ee9782d493bb609c24d8d");
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", "df60a5d4e38ee9782d493bb609c24d8d");
}
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
});