$(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);
});
});
Descrizione del prodotto: Versatile fresa multifunzione con controllo della velocità variabile Pratica fresa multifunzione per il settore della falegnameria Questa fresa multifunzione può essere utilizzata per fresare varie scanalature o motivi decorativi nel legno. La funzione anti-riavvio impedisce l'avvio involontario della macchina dopo un'interruzione di corrente. Con avviamento graduale.
Dati tecnici Potenza assorbita 710 W Numero di giri a vuoto 10 000 - 34 000 min¹ Altezza di sollevamento fresa 0 - 35 mm Altezza di sollevamento fresa per bordi 0 - 40 mm Portautensili 6 / 8 mm Peso senza cavo 1,8 - 2,8 kg Dimensioni del prodotto (L x P x A) 89 x 89 x 210 mm Attacco del tubo di aspirazione Ø interno/esterno 32/37 mm Livello di potenza sonora (LWA) 93 dB(A) Livello di pressione sonora (LpA) 82 dB(A) Valore K del rumore 3 dB(A) Vibrazione 2,5 m/s² Valore K vibrazioni 1,5 m/s²
Contenuto della fornitura: 1x router multifunzione Makita RT0702CX2J 1x rullo di guida 1x guida di taglio 1x impugnatura laterale 1x bocchetta di aspirazione 1 modulo router 1 modulo fresa per bordi 1 modulo fresa angolare 1x manicotto di copiatura 10,0 mm 1x MAKPAC
Manufacturer Makita Werkzeug GmbH
Makita-Platz 1,
40885 Ratingen,
Deutschland www.makita.de Router multifunzione Makita RT0702CX2J, 710 W incl. modulo di fresatura in MAKPAC Artikel-Nr.: RT0702CX2J EAN: 0088381752695 Hersteller: MAKITA
187,99 €
Ceres::Template.crossPriceRRP
-46%
inkl. MwSt., ggf. zzgl. Versandkosten
Ceres::Template.singleItemContent
1
Nicht lagernd
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", "it_IT");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "4c21ac8a9392861346574b1a4fd915cf");
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", "it_IT");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "4c21ac8a9392861346574b1a4fd915cf");
}
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
});