$(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);
});
});
Caratteristiche del prodotto:
Forza d'urto estrema di 1.000 Nm, con un peso di soli 3,3 kg inclusa la batteria
Grazie all'utilizzo di un motore BL (brushless), la capacità della batteria viene sfruttata in modo ancora più efficiente rispetto ai motori elettrici tradizionali
Il design speciale con ammortizzatori in gomma integrati protegge la batteria e i contatti dalle vibrazioni
Doppia luce di lavoro a LED con funzione afterglow
La limitazione elettronica della velocità può essere preselezionata in tre fasi
Dati tecnici:
Velocità a vuoto 0-900 / 0-1.000 / 0-1.800 min-1
Velocità d'impatto 0-1.800 / 0-2.000 / 0-2.200 min-1
Coppia di serraggio max. 1.000 Nm
Viti standard M12 - M30
Viti ad alta resistenza M10-M24
Portautensili 1/2"
Batteria ricaricabile 18 V
Peso secondo EPTA 3,3 kg
Dimensioni (L x P x A) 229 x 91 x 289 mm
Livello di pressione sonora 97 dB(A)
Valore K vibrazioni 1,5 m/s²
Valore K rumore 3 dB(A)
Livello di potenza sonora (LWA) 108 dB(A)
Impatto delle vibrazioni a pieno carico 18,0 m/s²
Contenuto della fornitura:
1x avvitatore a impulsi a batteria Makita DTW1002Z
1x vite M4x12
1x clip da cintura
Manufacturer Makita Werkzeug GmbH
Makita-Platz 1,
40885 Ratingen,
Deutschland www.makita.de Avvitatore a impulsi a batteria Makita DTW1002Z 1/2" 18V senza batteria senza caricabatterie in scatola Artikel-Nr.: DTW1002Z EAN: 0088381803397 Hersteller: MAKITA
255,99 €
Ceres::Template.crossPriceRRP
-48%
inkl. MwSt., ggf. zzgl. Versandkosten
Ceres::Template.singleItemContent
1
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", "378bab6ff2b15e46564679e6a5835e8a");
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", "378bab6ff2b15e46564679e6a5835e8a");
}
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
});