Caractéristiques du produit : Durée de vie nettement plus longue - jusqu'à 5 fois plus de perçages possibles Gain de temps lors du perçage jusqu'à 50%. Perçage extrêmement rapide et ménageant les forces Centrage parfait sans pointage, même sur les surfaces rondes comme les tuyaux Processus de perçage léger et silencieux, sans se coincer dans le matériau Convient parfaitement à l'utilisation dans des outils électriques (sans fil) manuels Ø 1,0 mm à 13,0 mm x 0,5 mm croissant Application principale : Acier 900 N/mm². Acier 1100 N/mm Aluminium Laiton Plastiques Bois Application secondaire : Bronze FonteDonnées techniques : Poids net : 1,200 kg Profondeur de perçage : 5 x diamètre DIN : 338 Matériau : HSSE-Co 5 Revêtement : Surface bronzée / oxydée noire Queue : Queue à trois faces Type : FLOWSTEP Sens de la coupe : coupe à droite Angle de pointe : 130 Angle de la spirale : 25° - 30 Tolérance : h8 Profil de la rainure : normal Noyau : normal Application principale : acier 900 N/mm Affûtage de la pointe : FLOWSTEP®.Contenu de la livraison : 1x Jeu de forets hélicoïdaux Ruko ULTIMATECUT DIN 338 type FLOWSTEP®, HSSE-Co 5 - 25 pcs.
Fabricant Ruko GmbH
Robert-Bosch-Str. 7 - 9,
71088 Holzgerlingen,
Allemagne 07031/68000 Jeu de forets hélicoïdaux Ruko ULTIMATECUT DIN 338 type FLOWSTEP®, HSSE-Co 5 - 25 pcs. Artikel-Nr.: 259215ERO EAN: 4007140386199 Hersteller: RUKO
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", "c375ae7dd3e4f3a61235945e7d1ffb19");
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", "c375ae7dd3e4f3a61235945e7d1ffb19");
}
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
});