$(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 : Ensemble de machines 11 volts comprenant une perceuse-visseuse sans fil, une meuleuse d'angle sans fil, 2 batteries et un chargeur dans une L-BOXX pratique
Données techniques :
Perceuse-visseuse sans fil Bosch GSR 12V-15 : Couple max. (vis de dure) : 30 Nm Couple max. (vis de souple) : 15 Nm Vitesse à vide (1ère / 2ème vitesse) : 0 – 400 / 1.300 min⁻¹ Plage de serrage du mandrin, min./max. : 1 / 10 mm Tension de la batterie : 12V Capacité de la batterie : 2 Ah Poids avec batterie : 0,95 kg Niveaux de couple : 20+1 Longueur : 169,0 mm Diamètre de perçage : Diamètre max. de perçage dans le bois : 19 mm Diamètre max. de perçage dans l'acier : 10 mm Diamètre de vis : Diamètre max. de vis : 7 mm
Meuleuse d'angle sans fil Bosch GWS 12V-76 : Vitesse à vide : 19.500 min⁻¹ Tension de la batterie : 12 V Filetage de la broche : M 5 Alésage : Ø 10 mm Poids sans batterie : 0,7 kg Dimensions de l'emballage (largeur x longueur x hauteur) : 217 x 340 x 106 mm Poids avec batterie : 0,9 kg Outils utilisés : Disque à ébarber / de tronçonnage, Ø 76 mm
Contenu de la livraison : 1x Perceuse-visseuse sans fil Bosch GSR 12V-15 Professional (0 601 868 101) 1x Meuleuse d'angle sans fil Bosch GWS 12V-76 Professional (0 601 9F2 000) 1x Chargeur rapide Bosch GAL 12V-40 Professional (1 600 A01 9R4) 2x Batterie GBA 12V 2.0Ah (1 600 A00 1BS) 1x L-BOXX
Fabricant Robert Bosch Power Tools GmbH
Max-Lang-Str. 40-46,
70771 Leinfelden-Echterdingen,
Allemagne https://www.bosch-pt.com 0711/8110 Kit Combo Bosch avec 2 outils 12V : GSR 12V-15+ GWS 12V-76 +2x2.0Ah + GAL 12V-40 (L) 0615990N2U
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", "1339bca6d6066b8e10402a8ba97acafa");
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", "1339bca6d6066b8e10402a8ba97acafa");
}
Versandkostenfreie Lieferung in DE ab 100€ Kostenloser Rückversand EXPRESS mit UPS NEXT DAY möglich Bei Bestellung mit Zahlungseingang vor 12 Uhr, Aufpreis: 9,99€ (Zustellung Mo.-Fr.)
$(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
});