1.3D机房右侧弹框修复

2.菜单栏高亮提示
This commit is contained in:
wangwenrui
2018-09-29 13:59:14 +08:00
parent 6d8be3f9f1
commit d9f76096bc
3 changed files with 721 additions and 680 deletions

View File

@@ -195,7 +195,7 @@ body {
}
}
with (oSon){
with (oSon){
innerHTML = info;
style.display = "block";
if(navigator.userAgent.indexOf("MSIE")>0) {
@@ -207,6 +207,12 @@ body {
y = e.clientY;
style.left = x + window.document.body.scrollLeft-200 ;
style.top = y + window.document.body.scrollTop-50;
}else if(navigator.userAgent.indexOf("Chrome")>0){
var e = event ? event : window.event;
x = e.clientX;
y = e.clientY;
style.left = x + window.document.body.scrollLeft-200 ;
style.top = y + window.document.body.scrollTop-50;
}
}
}