Produkteigenschaften:
Verbesserte Aufbewahrungs- und Transportlösung im Bosch Mobility System
Einfaches Öffnen gestapelter Boxen und verbesserter L-BOXX-Klick-Mechanismus für bequeme Handhabung
Volle Flexibilität dank hoher Kompatibilität mit L-BOXX-Varianten und Werkzeugeinlagen sowie dem Fahrzeugsystem von SORTIMO
Robuste Bauweise dank zuverlässigem L-BOXX-Material und verbesserten Verschlussbügeln
Technische Daten:
MaterialausführungABS
Gewicht2.6 kg
Außenabmessungen (Breite)442 mm
Außenabmessungen (Länge)357 mm
Außenabmessungen (Höhe)117 mm
Außenabmessungen (Breite x Länge x Höhe)442 x 357 x 117 mm
Gewicht (inkl. Verpackung)1.599 kg
Lieferumfang:
1x Bosch Koffersystem L-BOXX 102 mit Einsatzbox-Set 13 Stück (1600A016NA)
- Hersteller
- Robert Bosch Power Tools GmbH
-
Max-Lang-Str. 40-46,
70771 Leinfelden-Echterdingen,
Deutschland
- https://www.bosch-pt.com
- 0711/8110
$(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
});