page resizing

时间:2022-09-13 19:48:03
<script type="text/javascript">

	$(window).load(function () {
var root; root = $("body").children(); var strWidth;
var strHeight; //innerWidth / innerHeight / outerWidth / outerHeight 
if (window.innerWidth && window.innerHeight && window.outerWidth && window.outerHeight) {
strWidth = $(root).outerWidth(true) + (window.outerWidth - window.innerWidth);
strHeight = $(root).outerHeight(true) + (window.outerHeight - window.innerHeight);
}
else {
var strDocumentWidth = $(document).outerWidth(true);
var strDocumentHeight = $(document).outerHeight(true); window.resizeTo(strDocumentWidth, strDocumentHeight); //IE 必须 resize 2次 var strMenuWidth = strDocumentWidth - $(window).width();
var strMenuHeight = strDocumentHeight - $(window).height(); strWidth = $(root).outerWidth(true) + strMenuWidth;
strHeight = $(root).outerHeight(true) + strMenuHeight;
} //resize 
window.resizeTo(strWidth, strHeight);
}); </script>

page resizing的更多相关文章

  1. 我这么玩Web Api(一):帮助页面或用户手册&lpar;Microsoft and Swashbuckle Help Page&rpar;

    前言 你需要为客户编写Api调用手册?你需要测试你的Api接口?你需要和前端进行接口对接?那么这篇文章应该可以帮到你.本文将介绍创建Web Api 帮助文档页面的两种方式,Microsoft Help ...

  2. HTML5 Page Visibility

    什么是 Page Visibility ? Page Visibility 即页面可见性,通过 visibilityState 的值检测页面当前是否可见.当一个网站是可见或点击选中的状态时 Page ...

  3. angularjs 1 开发简单案例&lpar;包含common&period;js&comma;service&period;js&comma;controller&period;js&comma;page&rpar;

    common.js var app = angular.module('app', ['ngFileUpload']) .factory('SV_Common', function ($http) { ...

  4. Selenium的PO模式(Page Object Model)&lbrack;python版&rsqb;

     Page Object Model 简称POM  普通的测试用例代码: .... #测试用例 def test_login_mail(self): driver = self.driver driv ...

  5. SharePoint2013 Set a custom application page as site welcome page

    本文主要介绍如何添加一个custom application page as site welcome page 1.首先创建一个sharepoint 2013 empty solution, add ...

  6. 使用page object模式抓取几个主要城市的pm2&period;5并从小到大排序后写入txt文档

    #coding=utf-8from time import sleepimport unittestfrom selenium import webdriverfrom selenium.webdri ...

  7. github page&plus;jekyll搭博客初体验

    div.oembedall-githubrepos { border: 1px solid #DDD; list-style-type: none; margin: 0 0 10px; padding ...

  8. selenium page object &amp&semi; Page Factory

    package demo; import java.util.concurrent.TimeUnit; import org.openqa.selenium.By; import org.openqa ...

  9. &lt&semi;&percnt;&commat; page trimDirectiveWhitespaces&equals;&quot&semi;true&quot&semi; &percnt;&gt&semi;

    我们经常会在JSP页面上使用: <%@ page trimDirectiveWhitespaces="true" %> 这个命令可以使jsp输出的html时去除多余的空 ...

随机推荐

  1. ffmpeg为视频添加时间戳 - 手动编译ffmpeg

    FFMPEG给视频加时间戳水印 项目中需要给视频添加时间戳,理所当然最好用的办法是ffmpeg.在找到正确的做法前,还被网上的答案timecode给水了一下(水的不轻,在这里转了2天),大概是这样写的 ...

  2. Jekyll &plus; Github 搭建属于你的静态博客

    1. 搭建Jekyll环境 linux下jekyll的安装非常简单,这里主要讲一下windows下的jekyll的安装过程 这是一台刚刚装完系统的win10系统,它什么都没有,让我们从零开始. 1.1 ...

  3. s

    echo.  输出空行 echo; 输出空行 请求用户输入 set /p LOG_PATH=请输入log绝对路径: http://159.20.127:9009/gamesdk/doroot.jsp ...

  4. BZOJ3145 &colon; &lbrack;Feyat cup 1&period;5&rsqb;Str

    如果不存在模糊点,那么答案就是两个串的最长公共子串. 如果模糊点是某个串的开头或者结尾,那么可以暴力枚举另一个串中的某个前后缀更新答案. 否则,假设模糊点在第一个串里是$i$,在第二个串里是$j$,那 ...

  5. j2ee log4j集中式日志解决方案logpool v0&period;3

    V0.3相对于v0.2的更新如下:

  6. DISTINCT后按照DISTINCT之前的某列进行排序

    SELECT 行业名称 FROM 评分标准 GROUP BY 行业名称 ORDER BY MAX(行业ID) DESC

  7. mysql 报Row size too large 65535 原因与解决方法

    报错信息:Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535 ...

  8. 修改Oracle Client的字符集

    修改Oracle Client的字符集 找到注册表 HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_OraDb10g_home1下的 NLS_LANG,修改键值为SIMP ...

  9. &lbrack;python标准库&rsqb;Pickle模块

    Pickle-------python对象序列化 本文主要阐述以下几点: 1.pickle模块简介 2.pickle模块提供的方法 3.注意事项 4.实例解析 1.pickle模块简介 The pic ...

  10. Java进阶(七)正确理解Thread Local的原理与适用场景

    原创文章,始自发作者个人博客,转载请务必将下面这段话置于文章开头处(保留超链接). 本文转发自技术世界,原文链接 http://www.jasongj.com/java/threadlocal/ Th ...