繁体中文
设为首页
加入收藏
当前位置:JSP技术首页 >> Java技巧及代码 >> Javascript模拟的DOS窗口

Javascript模拟的DOS窗口

2004-12-15 08:00:00  作者:  来源:互联网  浏览次数:0  文字大小:【】【】【
简介:   window.onload = function() { win.document.body.innerHTML = ""; win.document.appendChild(win.document.createElement("STYLE")); win.document.styleSheets[0].addRule("body", "padding: 0px; margin...

  

window.onload = function()

{

win.document.body.innerHTML = "

";

win.document.appendChild(win.document.createElement("STYLE"));

win.document.styleSheets[0].addRule("body", "padding: 0px; margin: 0px;");

win.document.styleSheets[0].addRule("#Frame", "width: 100%; height: 100%; background: #3A6EA5;");

win.document.styleSheets[0].addRule(".Cmd", "background: #fff; position: absolute; width: 670px; height: 440px; font-size: 10pt; color: #fff; cursor: default;");

win.document.styleSheets[0].addRule(".Title", "filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#6B79B8,endColorStr=#8C9ADB,GradientType=1); height: 24px; font-weight: bold;");

win.document.styleSheets[0].addRule(".Title span", "float: left; line-height: 20px;");

win.document.styleSheets[0].addRule(".Title button", "width: 18px; height: 18px; float: right; font: 9pt; font-weight: bold; text-algin: center; margin: 2px 1px 0px 0px; border: outset 2px #fff;");

win.document.styleSheets[0].addRule(".Content", "background: #000; height: 100%; overflow-y: scroll; scrollbar-face-color: #ece9d8; scrollbar-highlight-color: #ffffff; scrollbar-shadow-color: #ccc; scrollbar-arrow-color: #000000; scrollbar-track-color: #eeeeee; scrollbar-darkshadow-color: #666; scrollbar-base-color: #ece9d8;");

win.document.styleSheets[0].addRule(".Content p", "margin: 0px; line-height: 16px;");

win.document.styleSheets[0].addRule(".Content .Adorn", "height: 4000px;");

OpenCmdWindow(0);

}

责任编辑:admin
相关文章