GOTOOLS
MARKEN MAFELL
{
"@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\/mafell","name":"MAFELL"}}]
}
Produktbeschreibung: Das Sortiment 3 Wood wurde speziell für anspruchsvolle Arbeiten in der Holzbearbeitung entwickelt. Die langlebigen Sägeblätter aus hochwertigem Stahl Stahl sichern eine hohe Schnittgeschwindigkeit und präzise Ergebnisse zu. Dank der vielfältigen Zahngeometrien und Blattformen können selbst schwierigste Schnittführungen mühelos gemeistert werden. Dabei sind alle Sägeblätter in der praktischen Aufbewahrungsbox immer griffbereit und sorgfältig verstaut.
Einsatzgebiet Massivholz: CUNEX W1, W2, W5, W7, W8 Plattenwerkstoffe wie Span- oder Tischlerplatten: CUnex W1, W2, W5, W7, W8 Plattenwerkstoffe beschichtet/furniert: W5, W7, W8
Vorteile CUnex W1: Das Sägeblatt Cunex W1 ermöglicht dank innovativer Bauform einzigartige Präzision und Stabilität, welches besonders exakte und rechtwinklige Schnitte erlaubt. W2: Durch seine Bauform ist das Sägeblatt besonders gut für schnelle Tauchschnitte geeignet. W5: Durch die besondere Bauform ist das Sägeblatt besonders gut für effiziente Tauchschnitte geeignet. Durch die kleine Zahnteilung gelingen besonders saubere Schnitte. W7: Durch die besondere Anordnung der Zähne ist das Sägeblatt besonders gut geeignet für saubere, kreisförmige Tauchschnitte. W8: Das Sägeblatt ermöglicht saubere, gerade und beidseitig ausrissfreie Tauchschnitte.
Technische Daten: Gewicht: 0,148 kgLieferumfang: Mafell Stichsägeblatt-Sortiment SSB-SET3 Wood, 4 x W2, W5, W7, W8, 2x CUNEX W1, 9-tlg.: 4x Stichsägeblätter W2 1x Stichsägeblatt W5 1x Stichsägeblatt W7 1x Stichsägeblatt W8 2x Stichsägeblätter CUnex W1
Mafell Stichsägeblatt-Sortiment SSB-SET3 Wood, 4 x W2, W5, W7, W8, 2x CUNEX W1, 9-tlg. Artikel-Nr.: 93866 EAN: 4032689254210 Hersteller: MAFELL
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.plentyone.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", "1054439a11d91113fd7f0a685275a2d5");
document.body.appendChild(script);
} else {
var script = document.getElementById('paypal-smart-payment-script');
script.src = "https://cdn02.plentyone.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", "1054439a11d91113fd7f0a685275a2d5");
}
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
});