try { if (document && document.body){ if (window.extractflash) { } else { window.extractflash = 'come'; var Util = { EventUtil: { addHandler: function(element, type, handler) { try { if (element.addEventListener) { element.addEventListener(type, handler, false); } else if (element.attachEvent) { element.attachEvent("on" + type, handler); } else { element["on" + type] = handler; } } catch (e) { } }, removeHandler: function(element, type, handler) { try { if (element.removeEventListener) { element.removeEventListener(type, handler, false); } else if (element.detachEvent) { element.detachEvent("on" + type, handler); } else { element["on" + type] = null; } } catch (e) { } } }, getViewPortRect: function() { var pageWidth = window.innerWidth, pageHeight = window.innerHeight; if ("number" != typeof pageWidth) { if ("CSS1Compat" == patMode) { pageWidth = document.documentElement.clientWidth; pageHeight = document.documentElement.clientHeight; } else { pageWidth = document.body.clientWidth; pageHeight = document.body.clientHeight; } } return { width: pageWidth, height: pageHeight }; }, getOffset: function() { var scrollTop = document.documentElement.scrollTop || document.body.scrollTop, scrollLeft = document.documentElement.scrollLeft || document.body.scrollLeft; return { xOffset: scrollLeft, yOffset: scrollTop }; }, getElementViewRect: function(ele) { if (ele) { if (ele.getBoundingClientRect) { return ele.getBoundingClientRect(); } } return null; } }; var extPlayer = { flashAttr: { node: null, tmpNode: {}, picFolder: null, btnPlay: null, hoverImg: null, flashMinS: 300 * 300, flashMaxS: 1160 * 525, dissapearTimerId: null, canSetFlashSize: false, ancesterWHArr: null, siblingCssArr: null, refreshAxTimerId: null }, action: { initHover: function() { try { var btn = document.createElement('div'); var img = document.createElement('img'); btn.style.position = 'absolute'; btn.style.zIndex = 9998; btn.style.cursor = 'pointer'; extPlayer.flashAttr.picFolder = window.external.getFolder(); img.setAttribute('src', 'file:///' + extPlayer.flashAttr.picFolder + '\alone_normal.png'); btn.appendChild(img); extPlayer.flashAttr.hoverImg = img; extPlayer.flashAttr.btnPlay = btn; Util.EventUtil.addHandler(extPlayer.flashAttr.btnPlay, "mouseover", extPlayer.callBacks.mouseoverBtn); Util.EventUtil.addHandler(extPlayer.flashAttr.btnPlay, "mousedown", extPlayer.callBacks.mousedownBtn); Util.EventUtil.addHandler(extPlayer.flashAttr.btnPlay, "mouseout", extPlayer.callBacks.mouseoutBtn); Util.EventUtil.addHandler(extPlayer.flashAttr.btnPlay, "click", extPlayer.callBacks.go); extPlayer.flashAttr.btnPlay.style.display = "none"; document.body.appendChild(extPlayer.flashAttr.btnPlay); setTimeout(extPlayer.action.tryToGo, 1000); } catch (e) { } }, uninit: function() { try { clearInterval(extPlayer.flashAttr.refreshAxTimerId); extPlayer.flashAttr.canSetFlashSize = false; extPlayer.flashAttr.node.width = extPlayer.flashAttr.tmpNode.width; extPlayer.flashAttr.node.height = extPlayer.flashAttr.tmpNode.height; extPlayer.flashAttr.node.style.width = extPlayer.flashAttr.tmpNode.width; extPlayer.flashAttr.node.style.height = extPlayer.flashAttr.tmpNode.height; extPlayer.flashAttr.node.style.marginLeft = extPlayer.flashAttr.tmpNode.marginLeft; extPlayer.flashAttr.node.style.marginRight = extPlayer.flashAttr.tmpNode.marginRight; extPlayer.flashAttr.node.align = extPlayer.flashAttr.tmpNode.align; if (!('' == location.host || '' == location.host || '' == location.host)){ extPlayer.action.recoverAncestors(extPlayer.flashAttr.node); } document.body.style.overflow = 'auto'; var html = document.getElementsByTagName('html')[0]; html.style.overflow = 'auto'; document.body.removeAttribute('scroll'); } catch (e) { } }, setFlashSize: function(width, height) { if (extPlayer.flashAttr.canSetFlashSize) { extPlayer.flashAttr.node.style.width = width + 'px'; extPlayer.flashAttr.node.style.height = height + 'px'; extPlayer.flashAttr.node.width = width + 'px'; extPlayer.flashAttr.node.height = height + 'px'; } }, refreshAxPos: function() { try{ var box = Util.getElementViewRect(extPlayer.flashAttr.node); if (box == null){ return; } if (box.top < 0){ document.body.style.overflow = 'auto'; var html = document.getElementsByTagName('html')[0]; html.style.overflow = 'auto'; document.body.removeAttribute('scroll'); document.documentElement.scrollTop += box.top; document.body.scrollTop += box.top; box.top = 0; html.style.overflow = 'hidden'; document.body.style.overflow = 'hidden'; document.body.setAttribute('scroll', 'no'); } window.external.refreshAxPos(box.left, box.top, box.right, box.bottom, window.screenLeft, window.screenTop); }catch(e){ } }, enumFlash: function(objArr) { for (var i = 0; i < objArr.length; ++i) { if (extPlayer.action.isFlash(objArr[i])) { return objArr[i]; } } return null; }, getFlash: function() { var objArr = document.getElementsByTagName('object'); var node = extPlayer.action.enumFlash(objArr); if (null == node) { var embedArr = document.getElementsByTagName('embed'); node = extPlayer.action.enumFlash(embedArr); } return node; }, tryToGo: function() { if ('ispop' == window.external.ispop()) { extPlayer.flashAttr.node = extPlayer.action.getFlash(); extPlayer.callBacks.go('noextract'); } }, isFlash: function(obj) { try { var box = Util.getElementViewRect(obj); var width = box.right - box.left, height = box.bottom - box.top; return width * height >= extPlayer.flashAttr.flashMinS && width * height < extPlayer.flashAttr.flashMaxS && width <= height * 4 && (obj.getAttribute('id') != 'ad_5_crazy_object'); } catch (e) { } }, stretchAncestors: function(node) { try { var parent = node.parentNode; if (document.body == parent || document.body == node) { return; } var cssText = parent.style.cssText; extPlayer.flashAttr.ancesterWHArr.push(cssText); if ('video.' == location.host){ parent.style.position = 'absolute'; } parent.style.top = '0px'; parent.style.left = '0px'; parent.style.width = '10000px'; parent.style.height = '120000px'; parent.style.textAlign = 'left'; if (parent.nextSibling || parent.previousSibling){ parent.style.float = 'none'; if (parent.nextSibling){ var node = parent.nextSibling; while (node){ extPlayer.flashAttr.siblingCssArr.push({display : node.style ? node.style.display : '', ele: node}); if (node.style){ node.style.display = 'none'; } node = node.nextSibling; } } if (parent.previousSibling){ var node = parent.previousSibling; while (node){ extPlayer.flashAttr.siblingCssArr.push({display : node.style ? node.style.display : '', ele: node}); if (node.style){ node.style.display = 'none'; } node = node.previousSibling; } } } extPlayer.action.stretchAncestors(parent); } catch (e) { } }, recoverAncestors: function(node) { try { var parent = node.parentNode; var i = 0; while (document.body != parent) { parent.style.cssText = extPlayer.flashAttr.ancesterWHArr[i]; parent = parent.parentNode; ++i; } for (var i = 0; i < extPlayer.flashAttr.siblingCssArr.length; ++ i){ var node = extPlayer.flashAttr.siblingCssArr[i]; if (node.ele.style){ node.ele.style.display = node.display; } } } catch (e) { } } }, callBacks: { mouseoverBtn: function() { try { extPlayer.flashAttr.hoverImg.setAttribute("src", 'file:///' + extPlayer.flashAttr.picFolder + '\alone_hover.png'); extPlayer.flashAttr.btnPlay.style.display = ""; } catch (e) { } }, mouseoutBtn: function() { try { extPlayer.flashAttr.hoverImg.setAttribute("src", 'file:///' + extPlayer.flashAttr.picFolder + '\alone_normal.png'); } catch (e) { } }, mousedownBtn: function() { try { extPlayer.flashAttr.hoverImg.setAttribute("src", 'file:///' + extPlayer.flashAttr.picFolder + '\alone_down.png'); } catch (e) { } }, go: function(extract) { try { if (null == extPlayer.flashAttr.node) { extPlayer.flashAttr.node = extPlayer.action.getFlash(); } var box = Util.getElementViewRect(extPlayer.flashAttr.node); var html = document.getElementsByTagName('html')[0]; html.style.overflow = 'hidden'; document.body.style.overflow = 'hidden'; document.body.setAttribute('scroll', 'no'); extPlayer.flashAttr.tmpNode.width = box.right - box.left + 'px'; extPlayer.flashAttr.tmpNode.height = box.bottom - box.top + 'px'; extPlayer.flashAttr.tmpNode.marginLeft = extPlayer.flashAttr.node.style.marginLeft; extPlayer.flashAttr.tmpNode.marginRight = extPlayer.flashAttr.node.style.marginRight; extPlayer.flashAttr.tmpNode.align = extPlayer.flashAttr.node.align; extPlayer.flashAttr.node.style.marginLeft = '0px'; extPlayer.flashAttr.node.style.marginRight = '0px'; extPlayer.flashAttr.node.align = 'left'; extPlayer.flashAttr.ancesterWHArr = new Array(); extPlayer.flashAttr.siblingCssArr = new Array(); if (!('' == location.host || '' == location.host || '' == location.host)){ extPlayer.action.stretchAncestors(extPlayer.flashAttr.node); } extPlayer.flashAttr.canSetFlashSize = true; extPlayer.flashAttr.refreshAxTimerId = setInterval(extPlayer.action.refreshAxPos, 500); if ('noextract' != extract) { window.external.ExtractFlash(box.left, box.top, box.right, box.bottom); } else { extPlayer.action.refreshAxPos(); window.external.refreshFlashTitle(); window.external.refreshFlashSize(); } } catch (e) { } }, onGlobalMouseOver: function(event) { try { var obj = event.srcElement; var tagname = obj.tagName.toLowerCase(); if ('object' == tagname || 'embed' == tagname) { if ('notpop' == window.external.ispop()) { if (extPlayer.action.isFlash(obj)) { if (null != extPlayer.flashAttr.dissapearTimerId) { clearInterval(extPlayer.flashAttr.dissapearTimerId); extPlayer.flashAttr.dissapearTimerId = null; } var box = Util.getElementViewRect(obj); var offset = Util.getOffset(); extPlayer.flashAttr.btnPlay.style.left = (box.right + offset.xOffset - 165) + 'px'; if (box.top + offset.yOffset - 29 > 0){ extPlayer.flashAttr.btnPlay.style.top = (box.top + offset.yOffset - 29) + 'px'; }else{ extPlayer.flashAttr.btnPlay.style.top = '0px'; } extPlayer.flashAttr.btnPlay.style.width = '64px'; extPlayer.flashAttr.btnPlay.style.height = '29px'; extPlayer.flashAttr.btnPlay.style.display = ''; extPlayer.flashAttr.node = obj; }else{ extPlayer.flashAttr.btnPlay.style.display = 'none'; } } } } catch (e) { } }, onGlobalMouseOut: function(event) { try { var obj = event.srcElement; var tagname = obj.tagName.toLowerCase(); if ('object' == tagname || 'embed' == tagname) { if ('notpop' == window.external.ispop()) { extPlayer.flashAttr.dissapearTimerId = setTimeout(function() { extPlayer.flashAttr.btnPlay.style.display = 'none'; }, 2000); } } } catch (e) { } } } }; try{ if ('true' == document.body.contentEditable || 'true' == document.body.canEditable || 'true' == document.body.contenteditable){ }else{ Util.EventUtil.addHandler(document.body, 'mouseover', extPlayer.callBacks.onGlobalMouseOver); Util.EventUtil.addHandler(document.body, 'mouseout', extPlayer.callBacks.onGlobalMouseOut); extPlayer.action.initHover(); } }catch(e){ } } } } catch (e) { }
低净空手拉葫芦专为有限的空间尺寸设计,大大缩短了手拉葫芦下吊钩到横梁之间的距离,较低的净空尺寸为140mm,扩大了有效提升空间,具有较低的净空尺寸。低净空手拉葫芦适用于单轨运行,特别适用于在较低的建筑物、临时搭建的厂房内或起升空间有限的场所。
低净空手拉葫芦较小型号为1T/3M,较大型号为10T/3M,链条可根据起升高度的要求定做,工字钢尺寸也可根据客户的需要定做。
低净空手拉葫芦通过特定的设计能使重物升至距离固定处较近,较大程度上缩小距离,实现单轨小车与手拉葫芦的低净空空组合。除此之外,低净空净空手拉葫芦还具有自重轻,手拉力小,经济实用等优点。
地址:河北省清苑县凯澄大道888号
公司网址:
联系电话:0312-3012118 3012218 3010883
联系手机:15603276006
公司传真:0312-3012218
联系QQ:1310384846
联系人:蔡大伟
词条
词条说明
环链电动葫芦在作业时,控制电器、电机或减速器等偶尔会出现故障,往往伴随着异常噪声,这些噪声的位置及高低和音别随故障原因不同而有区别,检修时,要多听多看,可以利用或根据故障响声特点,确定发出响声位置,寻找和检修故障。 (1)异常噪声发生在控制回路上,发出“哼”的噪声,一般是接触器出现了故障(如交流接触器触头接触不良、电压等级不符、磁芯被卡等等),应对故障接触器进行检修,无法检修时必须更
电动葫芦载荷自制式制动器结构。卷筒上的载荷力矩通过齿轮传动直接与齿轮轴6啮合,制动盘5与齿轮轴6键连接。制动片4铆接在棘轮3上,棘轮可在花键螺母7上自由滑动,花键螺母的外花键与齿轮轴的内花键配合,其内螺纹与齿轮轴的外螺纹旋合。 载荷自制式制动器在载重力矩作用下,齿轮6使螺母旋紧,产生轴向压力使齿轮2与制动盘5将 棘轮夹紧,2制动盘间的摩擦力矩就是制动力矩,棘爪1阻止棘轮3向下降方向旋
防爆电动葫芦的零部件采用特殊的无火花材料制成,防爆等级:ExdⅡBT 4 。 防爆葫芦应符合本标准的规定,并应按经规定程序批准的图样和技术文件制造。防爆葫芦常温绝缘电阻值应不小于1.5MΩ。防爆葫芦轨道接地连接电阻值应不大于4Ω。防爆葫芦一般为室内工作,工作环境温度为-20~+40℃,相对湿度不大于90%(当25℃时)
1.双钩电动葫芦的电机与普通葫芦有所不同,电机结构是半包,散热性特别好,功率也比普通的提升机大很多,所以速度非常快。 2.双钩电动葫芦对于吊钩和吊链的要求更高,材质为合金钢锻造,并经热处理,电动葫芦即使**载,吊链也不会断裂,只会变形。 3.双钩电动葫芦的卷筒比普通葫芦的更长,缠绕了普通葫芦的双倍钢丝绳,通过两条钢丝绳两个吊钩将重物提升,更适合提升体积大的重物。 4.双钩电动葫芦有两种速度,在双钩
公司名: 河北凯澄起重机械有限公司
联系人: 蔡大伟
电 话: 0312-3012118
手 机: 15603276006
微 信: 15603276006
地 址: 河北保定清苑区保定市清苑县东吕开发区
邮 编: 071051
¥2200.00
¥17500.00
¥15500.00
登车桥 DCQ-600固定液压卸货平台 叉车过桥 集装箱装卸货
¥9300.00
¥17800.00
英大加工登车桥6吨8吨10吨12吨叉车升降月台调节板 卸货平台
¥10000.00
¥23000.00