$(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 : Moteur sans balais pour plus d'endurance, une durée de vie prolongée et une conception plus compacte Avec double LED puissante avec fonction de pré-éclairage et de post-éclairage Particulièrement maniable grâce à sa forme compacte et courte Vitesse réglable avec précision Boîte de vitesses planétaire entièrement métallique à 2 vitesses Réglage du couple en 21 positions plus position de perçage
Caractéristiques techniques : Vitesse à vide 1ère vitesse 0 - 500 min-1 Vitesse à vide 2ème vitesse 0 - 1.900 min-1 Capacité de perçage dans le bois 38 mm Capacité de perçage dans l'acier 13 mm Couple doux 27 Nm Couple dur 50 Nm Plage de serrage du mandrin 1,5 - 13 mm Tension de la batterie 18 V Capacité de la batterie 5,0 Ah Dimensions (LxPxH) 169 x 79 x 255 mm Poids 1,7 kg Réglages de couple 21 + position de perçage Niveau de pression acoustique (LpA) : 74 dB(A) Valeur K du bruit : 3 dB(A) Vibration : 2,5 m/s² Valeur K de la vibration : 1,5 m/s²
Contenu de la livraison : 1x Perceuse-visseuse sans fil Makita 18V DDF485RTJ 2x Batterie BL1830B, 18V 3,0 Ah 1x Chargeur rapide DC18RC 1x MAKPAC Gr. 2
Fabricant Makita Werkzeug GmbH
Makita-Platz 1,
40885 Ratingen,
Allemagne www.makita.de [Pack] Perceuse-visseuse sans fil Makita DDF485RFJ 18 V / 3,0 Ah avec 2 batteries et chargeur DC18RC dans MAKPAC taille 2 Artikel-Nr.: DDF485RFJ-A1 EAN: 4250845567961 Hersteller: MAKITA
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", "fr_FR");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "2d26b7a6e3f68bc97fa618d9e1ecbe3f");
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", "2d26b7a6e3f68bc97fa618d9e1ecbe3f");
}
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
});