zoukankan
html css js c++ java
[Javascript]IFRAME运用(2)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>RetractBar</title> <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <STYLE type="TEXT/CSS"> </STYLE> <script language="javascript"> var currentMoveObj = null; function PageLoad() { //设置左边框架宽度:0.20为百分比 document.getElementById( "frmLeft" ).style.width = document.body.scrollWidth * 0.20; //设置缩进条颜色:#888888 document.getElementById( "frmBar" ).style.backgroundColor = "#888888"; } function switchSysBar() { if (switchPoint.innerText==3) { switchPoint.innerText=4; document.getElementById( "frmLeft" ).style.display = "none"; } else { switchPoint.innerText=3; document.getElementById( "frmLeft" ).style.display = ""; } } function BarMouseOver() { if (switchPoint.innerText==4) { switchPoint.innerText=3; document.getElementById( "frmLeft" ).style.display = ""; } } window.onload = PageLoad; window.onresize = PageLoad; </script> </head> <body topmargin="0" rightmargin="0" bottommargin="0" leftmargin="0"> <TABLE border=0 cellPadding=0 cellSpacing=0 height="100%" width="100%" ID="Table1"> <TR> <!--左框架--> <TD align="center" valign="middle" id="frmTitle"> <div id="frmLeft" style="HEIGHT: 100%"> <IFRAME frameBorder="0" id="Ileft" name="Ileft" src="" style="HEIGHT: 100%; VISIBILITY: inherit; WIDTH: 100%; Z-INDEX: 2"></IFRAME> </div> </TD> <!--缩进条--> <TD> <div id="frmBar" onmouseover="BarMouseOver()" style="FILTER: alpha(opacity=100,finishopacity=0,style=1,startx=0,starty=100,finishx=,finishy=100); WIDTH: 100%; HEIGHT: 100%"> <TABLE border="0" cellPadding="0" cellSpacing="0" height="100%" ID="Frame"> <TR> <TD style="HEIGHT: 100%"><SPAN style="COLOR: white; CURSOR: hand; FONT-FAMILY: Webdings; FONT-SIZE: 11px" onclick="switchSysBar()" id="switchPoint" title="点击缩放" >3</SPAN></TD> </TR> </TABLE> </div> </TD> <!--右框架--> <TD width="100%"> <div id="frmRight"> <IFRAME frameBorder="0" id="Iright" name="Iright" scrolling="no" src="about:home" style="HEIGHT: 100%; VISIBILITY: inherit; WIDTH: 100%; Z-INDEX: 1"></IFRAME> </div> </TD> </TR> </TABLE> </body> </html>
查看全文
相关阅读:
AC3 encoder flow
AC3 IMDCT
AC3 Rematrix
AC3 channel coupling
AC3 mantissa quantization and decoding
AC3 bit allocation
AC3 exponent coding
C# 判断字符串为数字 int float double
vs 修改默认的调试浏览器
visio 如何扩大画布大小
原文地址:https://www.cnblogs.com/HD/p/147749.html
最新文章
[CEOI2020 D1T1 / CF1402A] 花式围栏Fancy Fence 题解
[六省联考2017]相逢是问候 题解
CF587D Duff in Mafia 题解
Luogu P2286 [HNOI2004]宠物收养场
LOJ 6038 「雅礼集训 2017 Day5」远行
python加载不了cookirlib模块的问题
转载--Beautifuisoup的使用
python网络爬虫。第一次测试-有道翻译
计算机二级C语言冲刺笔记。
解决opencv在pycharm中无代码自动提示的bug
热门文章
opencv边缘滤波
opencv函数之cv.InRange函数
opencv 检测图片中圆形物体(解决乱线问题)
python 模块-easygui.buttonbox
opencv3+python+pycharm报错问题(cmd命令正常)
探索需求8
探索需求7
EAC3 mantissa quantization(VQ & GAQ)
EAC3 Spectral Extension Process
EAC3 Transient Pre-Noise Processing
Copyright © 2011-2022 走看看