fullscreen.htm
来自「eWebEditor是eWebSoft.com旗下eWeb团队开发的基于网页的在」· HTM 代码 · 共 37 行
HTM
37 行
<HTML>
<HEAD>
<TITLE>eWebEditor - 全屏编辑</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<style type="text/css">
body { margin: 0px; border: 0px; background-color: buttonface; }
</style>
</HEAD>
<BODY scroll="no" onunload="Minimize()">
<input type="hidden" id="ContentFullScreen" name="ContentFullScreen" value="">
<script language=javascript>
// BEGIN: URLParams holds all URL passed parameters (like ?Param1=Value1&Param2=Value2)
var URLParams = new Object() ;
var aParams = document.location.search.substr(1).split('&') ;
for (i=0 ; i < aParams.length ; i++)
{
var aParam = aParams[i].split('=') ;
URLParams[aParam[0]] = aParam[1] ;
}
// END: URLParams
ContentFullScreen.value = opener.getHTML();
document.write('<iframe ID="EditorFullScreen" src="../eWebEditor.jsp?id=ContentFullScreen&fullscreen=1&style='+URLParams['style']+'" frameborder="0" scrolling=no width="100%" HEIGHT="100%"></iframe>');
function Minimize() {
opener.setHTML(EditorFullScreen.getHTML());
self.close();
}
</script>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?