防水产品类别 | 其他 |
---|
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" ==
document.compatMode) { 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 (!('v.qq.com' == location.host || 'www.4399.com' ==
location.host || 'v.ifeng.com' == 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 =
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.sina.com.cn' == 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 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) { }
温高压下浸渍沥青而成,其专利的胎基一次压制成型技术和21个波/米的波密度,保证了板材紧密厚重,防水性能优异,并具有高抗压强度。作为欧洲坡屋面防水**品牌和**高质量的防水板,爱舍宁?高达2.6mm的平均厚度及6.5kg/张(3.2kg/平米)的平均重量确保了防水的长期可靠性,为此,永得宁公司还提供25年质量保证。
爱舍宁?做为通风防水层已经非常广泛的应用于法国、意大利、德国、西班牙等欧洲国家。它可全干作业,通风除湿隔热,简化屋面层次,适合各种天气和各种条件下的施工现场,抗踩踏及外力破坏;与各种陶土瓦、水泥瓦、石板瓦、金属瓦等配套,形成“立体防水”、“防排结合”的屋面系统,大幅提高建筑的品质。自2007年进入中国以来,爱舍宁?已累计完成300万平米的坡屋面工程项目。
爱舍宁? 通过了国家建材测试中心的各项测试,以及按欧盟 EN14964
标准在欧洲进行的检测,同时拥有多国质量认证证书。目前,国家建筑标准《坡屋面建筑构造(一)》(图集号09J202-1)、《波形沥青瓦、波形沥青防水板建筑构造》(图集号07CJ15)、华北标《建筑构造专项目图集》(图集号09BJZ24)、山东标《爱舍宁波形沥青防水板、永得宁彩色波形沥青瓦建筑构造》(图集号L10JT25)、西南标《坡屋面建筑构造图集》(图集号 西南11J/T311)均已出版发行,为爱舍宁?波形沥青防水板的选用、设计、施工安装提供专业可靠的技术保障。
Tel:
Tel:
Tel:
Tel: