📄 双目立体视觉.htm
字号:
<html><head><script type="text/javascript">
document.domain = "pudn.com";
</script>
<meta http-equiv="content-type" content="text/html; charset=GB2312">
<style><!--
body,td,.p1,.p2,.i{FONT-FAMILY: "宋体"; FONT-SIZE: 9pt}
p{line-height: 150%}
div img {
max-width:100px;
width:expression(this.width>100 ? 100:true);
max-height:100px;
height:expression(this.height>100 ? 100:true);
overflow:hidden;
}
a:hover{color:#0065ce;text-decoration:none;background:url(http://www.pudn.com/images/a_bg.gif) repeat-x 100% 100%}
--></style>
<title>立体视觉 程序员联合开发网-查找结果</title>
<script language="JavaScript" type="text/JavaScript">
//下拉菜单相关代码
var h;
var w;
var l;
var t;
var topMar = 1;
var leftMar = -2;
var space = 1;
var isvisible =false;
var MENU_SHADOW_COLOR='#F4F4F4';//定义下拉菜单阴影色
var global = window.document;
global.fo_currentMenu = null;
global.fo_shadows = new Array;
function HideMenu()
{
var mX;
var mY;
var vDiv;
var mDiv;
if (isvisible == true)
{
vDiv = document.all("menuDiv");
mX = window.event.clientX + document.body.scrollLeft;
mY = window.event.clientY + document.body.scrollTop;
if ((mX < parseInt(vDiv.style.left)) || (mX > parseInt(vDiv.style.left)+vDiv.offsetWidth) || (mY < parseInt(vDiv.style.top)-h) || (mY > parseInt(vDiv.style.top)+vDiv.offsetHeight))
{
vDiv.style.visibility = "hidden";
isvisible = false;
}
}
}
function ShowMenu(id)
{
if(isvisible ==false)
{
vSrc = window.event.srcElement;
var menu1='<div style="width:300px;height:1px;border:1px solid #808080;"><iframe id=i_flst marginwidth=0 marginheight=0 width=1 height=1 src="http://search.pudn.com/same_flst.asp?id=' + id + '" frameborder=0></iframe></div>';
vMnuCode = "<table id='submenu' cellspacing=0 cellpadding=1 onmouseout='HideMenu()'><tr height=1><td nowrap align=left class=MenuBody>" + menu1 + "</td></tr></table>";
h = vSrc.offsetHeight;
w = vSrc.offsetWidth;
l = vSrc.offsetLeft + leftMar+4;
t = vSrc.offsetTop + topMar + h + space-2;
vParent = vSrc.offsetParent;
while (vParent.tagName.toUpperCase() != "BODY")
{
l += vParent.offsetLeft;
t += vParent.offsetTop;
vParent = vParent.offsetParent;
}
menuDiv.innerHTML = vMnuCode;
menuDiv.style.top = t;
menuDiv.style.left = l;
menuDiv.style.visibility = "visible";
isvisible = true;
}
}
function ShowMenu_t(id)
{
}
function SetIFrameHeight(iframe_id)
{
//var iframe_id ='i_flst';
var bobo=document.getElementById(iframe_id);
if (bobo && !window.opera)
{
if (bobo.contentDocument && bobo.contentDocument.body.offsetHeight)
{
bobo.height = bobo.contentDocument.body.offsetHeight+5;
}
else if(bobo.Document && bobo.Document.body.scrollHeight)
{
bobo.height = bobo.Document.body.scrollHeight+5;
}
if (bobo.contentDocument && bobo.contentDocument.body.offsetWidth)
{
bobo.width = bobo.contentDocument.body.offsetWidth+5;
}
else if(bobo.Document && bobo.Document.body.scrollWidth)
{
bobo.width = bobo.Document.body.scrollWidth+5;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -