$(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);
});
});
Caractéristiques du produit :Scie sauteuse pendulaire Makita 4351FCTJB en édition noire
Puissant moteur de 720 watts avec limitation électronique du courant de démarrage et électronique constante
Réglage de la course pendulaire en 4 étapes pour optimiser la vitesse de coupe
Changement de lame sans outil
La plaque de base est inclinable à 45° des deux côtés
Aspiration externe raccordée pour un travail sans poussière
Poignée de guidage antidérapante avec rembourrage en caoutchouc inséré
Lampe de travail LED
Convient également pour le rail de guidage avec l'adaptateur disponible en option (référence 193517-1)
Données techniques :
Puissance absorbée720 W
Vitesse de course à vide800 - 2.800 min-1
Hauteur de levage26 mm
Course pendulaire4 positions
Capacité de coupe (bois)135 mm
Capacité de coupe (acier/alu)10 mm
Poids selon EPTA2,6 kg
Dimensions (L x l x H)271 x 73 x 187 mm
Contenu de la livraison :
1x Makita Scie sauteuse pendulaire 4351 Scchwarz
1x patin en plastique 417852-6
1x pare-éclats(415524-7)
1x Embout d'aspiration(417853-4)
1x clé à six pans creux(783202-0)
2x lame de scie sauteuse B-10 (A-85628)2x lame de scie sauteuse B-22 (A-85737)2x lame de scie sauteuse BR-13 (A-85793)1x MAKPAC coffret(837803-7)1x MAKPAC mallette de transport (type 1)
- Fabricant
- Makita Werkzeug GmbH
-
Makita-Platz 1,
40885 Ratingen,
Allemagne
- www.makita.de
Makita Scie sauteuse pendulaire 4351FCTJB 135 mm avec LED en noir
- Artikel-Nr.: 4351FCTJB
- EAN: 0088381771986
- Hersteller: Makita

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", "fr_FR");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "322ae7e4c8b6812e8aa86a45e22bd0d2");
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", "fr_FR");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "322ae7e4c8b6812e8aa86a45e22bd0d2");
}

- 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
});