Produkteigenschaften:
Kompakter und handlicher Rasentrimmer für Haus und Garten
Teleskopierbarer Schaft mit einem Verstellbereich von 180 mm
Schneidkopf in 5 Stufen neigbar
Nachführen des Mähfadens durch einfaches Drücken des Spulenkopfs gegen den Boden (Tap & Go)
Schneidkopf um 180° drehbar zum Kanten abschneiden
Mit Akku-Kapazitätsanzeige
Technische Daten:
Leerlaufdrehzahl7800 min-1
Schnittkreis260 mm
Gewicht inkl. Akku (EPTA)2,8 - 3,1 kg
Fadenstärke1,65 mm
Akkuspannung18 V
Maße (LxBxH)1229~1433x267x257 mm
Schallleistungspegel (LWA)88,5 dB(A)
Schalldruckpegel (LpA)82 dB(A)
K-Wert Geräusch2,5 dB(A)
Vibration2,5 m/s²
K-Wert Vibration1,5 m/s²
Lieferumfang:
1x Makita Akku-Rasentrimmer 18V DUR181RF
1x Akku BL1830B
1x System-Ladegerät DC18WC
1x Schultergurt einfaches
1x 1-Fadenkopf Tap&Go 1,6mm
1x Mähfaden 1,6, x 15 m
- Hersteller
- Makita Werkzeug GmbH
-
Makita-Platz 1,
40885 Ratingen,
Deutschland
- www.makita.de
Makita Akku-Rasentrimmer DUR181F001, 1x 3,0 Ah + Ladegerät DC18WC
- Artikel-Nr.: DUR181F001
- EAN: 0088381763912
- 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);
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", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "176059cda47947f199b0bf4fe2b05030");
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", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "176059cda47947f199b0bf4fe2b05030");
}

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