Produkteigenschaften:Im täglichen Dauereinsatz ist die GM 7011 mit ihrer starken Fördermenge, der kurzen Aufheizzeit und der Temperaturstufen von 40-230°C für die Verarbeitung verschiedenster Materialien unerlässlich.Ideal für Professionelle Klebearbeiten und der Verarbeitung unterschiedlicher Kleber für unbegrenzte AnwendungenSehr schnelle Aufheizzeit in < 2 min. / starke Fördermenge 35 g/min.Digital einstellbare Temperaturstufen von 40-230°CGeeignet für professionelle ø11mm Klebesticks mit unterschiedlichen Schmelztemperaturen: Acrylat, Fast, Flex, Low Melt und Polyurethan (PUR)Individuell einstellbare Klebemenge pro HubIntegrierter, abnehmbarer StandfußFein- und Langdüse optional erhältlichLieferumfang: GM 7011 inkl. langer Düse und 3x 11mm Klebesticks im KofferTechnische Daten:Leistung 400 WDurchschnittliche Leistungsaufnahme 110 WTemperatur 40 – 230 °CAufheizzeit 2 minFörderleistung 35 gr/minMax. Stickdurchmesser 11 mmTemperaturanzeige LCD-DisplayFunktion, Aufhängmöglichkeit NeinSoftgrip JaRuhemodus JaDüse wechselbar JaHubverstellung JaTemperatur, einstellbar JaTemperaturgenauigkeit +/- 5 °CHeizelement PTC HeizungSpannungsbereich (min) 220 VVerwendbar für Glas, Hart-PVC, Holz, Keramik, Leder, Papier, Papier lackiert, Pappe / Kartonagen, Planen, Plexiglas®, PVC, Styropor, TextilienAufschmelztemperatur 40 – 230 °CKabellänge 4 mVPE1, Nettogewicht 1,015 kgNetzstecker Typ FAbmessungen (L x B x H) 230 x 70 x 290 mm
Lieferumfang:1x Steinel Heißklebepistole Gluematic 70111x lange Düse3x 11mm Klebesticks1x Koffer
- Hersteller
- STEINEL GmbH
-
Dieselstr. 80-84,
33442 Herzebrock-Clarholz,
Deutschland
- 05245/4480
Steinel Heißklebepistole Gluematic 7011 im Koffer mit Zubehör
- Artikel-Nr.: 110093198
- EAN: 4007841086954
- Hersteller: STEINEL
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", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "dcdf4eb61d28dd8ae69ff8d238736d80");
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", "dcdf4eb61d28dd8ae69ff8d238736d80");
}

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