`

一个实用的js window封装类

    博客分类:
  • coos
阅读更多

发布一个实用的js window封装类,主要内容包括:

1.获取屏幕宽度的函数

2.获取屏幕高度的函数

3.获取滚动条横向宽度

4.获取滚动条竖向高度

5.window.onscroll绑定事件

6.删除window.onscroll绑定事件

7.window.onload绑定事件

8.让元素显示在屏幕中间

9.获取屏幕中间显示距离顶部的高度

10.固顶元素在屏幕中显示,不随滚动条的变化而变化

 

Js代码 复制代码
  1. if(!coos)var coos = function(){};   
  2. if(!coos.browser)   
  3. {   
  4.     coos.userAgent = navigator.userAgent.toLowerCase();   
  5.     coos.browser = {   
  6.         version: (coos.userAgent.match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [0,'0'])[1],   
  7.         safari: /webkit/.test(coos.userAgent),   
  8.         opera: /opera/.test(coos.userAgent),   
  9.         msie: /msie/.test(coos.userAgent) && !/opera/.test(coos.userAgent),   
  10.         mozilla: /mozilla/.test(coos.userAgent) && !/(compatible|webkit)/.test(coos.userAgent)   
  11.     };   
  12. }   
  13. coos.window = function(){};   
  14. coos.window.winWidth  = 0;   
  15. coos.window.winHeight = 0;   
  16.   
  17. /**  
  18.  * 获取屏幕宽度的函数,在非xhtml标准页面下有可能有问题  
  19.  */  
  20. coos.window.width = function()   
  21. {   
  22.     if (window.innerWidth)//for Firefox   
  23.     {   
  24.         coos.window.winWidth = window.innerWidth;   
  25.     }   
  26.     else if((document.body) && (document.body.clientWidth))   
  27.     {   
  28.         coos.window.winWidth = document.body.clientWidth;   
  29.     }   
  30.   
  31.     if (document.documentElement && document.documentElement.clientWidth)   
  32.     {   
  33.         coos.window.winWidth = document.documentElement.clientWidth;   
  34.     }   
  35.     return coos.window.winWidth;   
  36. };   
  37.   
  38. /**  
  39.  * 获取屏幕高度的函数  
  40.  * html,body高度属性必须设值为height:100%否则在火狐浏览器下获取不到真实高度  
  41.  */  
  42. coos.window.height = function()   
  43. {   
  44.     if (window.innerHeight)//for Firefox   
  45.     {   
  46.         coos.window.winHeight = window.innerHeight;   
  47.     }   
  48.     else if((document.body) && (document.body.clientHeight))   
  49.     {   
  50.         coos.window.winHeight = document.body.clientHeight;   
  51.     }   
  52.   
  53.     if (document.documentElement  && document.documentElement.clientHeight)   
  54.     {   
  55.         coos.window.winHeight = document.documentElement.clientHeight;   
  56.     }   
  57.     return coos.window.winHeight;   
  58. };   
  59.   
  60. /**  
  61.  * 获取滚动条横向宽度  
  62.  */  
  63. coos.window.scrollWidth = function()   
  64. {   
  65.     return document.body.scrollWidth + "px";   
  66. };   
  67.   
  68. /**  
  69.  * 获取滚动条竖向高度,取body.scrollHeight和documentElement.scrollHeight中最高的一个  
  70.  */  
  71. coos.window.scrollHeight = function()   
  72. {   
  73.     return Math.max(document.body.scrollHeight,document.documentElement.scrollHeight) + "px";   
  74. };   
  75.   
  76. coos.window.onscroll = function(){};   
  77.   
  78. /**  
  79.  * window.onscroll绑定事件  
  80.  * @param fn 需要绑定的function  
  81.  */  
  82. coos.window.onscroll.add = function(fn)   
  83. {   
  84.     if (window.addEventListener)    
  85.     {   
  86.         window.addEventListener("scroll",fn,false);   
  87.     }   
  88.     else  
  89.     {   
  90.         window.attachEvent("onscroll", fn);   
  91.     }   
  92. };   
  93.   
  94. /**  
  95.  * 删除window.onscroll绑定事件  
  96.  * @param fn 需要绑定的function  
  97.  */  
  98. coos.window.onscroll.remove = function(fn)   
  99. {   
  100.     if (window.removeEventListener)    
  101.     {   
  102.         window.addEventListener("scroll",fn,false);   
  103.     }   
  104.     else  
  105.     {   
  106.         window.detachEvent("onscroll", fn);   
  107.     }   
  108. };   
  109.   
  110. /**  
  111.  * window.onload绑定事件  
  112.  * @param fn 需要绑定的function  
  113.  */  
  114. coos.window.onload = function(fn)   
  115. {   
  116.     if (window.addEventListener)    
  117.     {   
  118.         window.addEventListener("load",fn,false);   
  119.     }   
  120.     else  
  121.     {   
  122.         window.attachEvent("onload", fn);   
  123.     }   
  124. };   
  125.   
  126. /**  
  127.  * 让元素显示在屏幕中间,元素必须是绝对定位的  
  128.  * @param obj 要显示的对象,改变top left 属性值  
  129.  * @param event 触发的事件,在有滚动条的情况下必须传入事件以获取当时所在的滚动条高度  
  130.  * @example  
  131. <style type="text/css">  
  132.         html,body {margin: 0; padding: 0;height:100%;font-size: 14px;}  
  133.       </style>  
  134.     <script type="text/javascript">    
  135.     function show(event)  
  136.     {  
  137.         var obj = document.getElementById("showDiv");  
  138.         coos.window.center(obj,event);  
  139.         //元素在屏幕中间距离顶部的高度  
  140.         var top = coos.window.center.top(obj);  
  141.         //固顶在屏幕上,不随滚动条变化  
  142.         coos.window.fixed.set(obj,top);  
  143.         coos.window.fixed();  
  144.     }  
  145.     </script>  
  146.     <div id="showDiv" style="position:absolute;left:20px;top:5px;height:20px;width:400px;border:2px solid #ccc;text-align: center;clear: both;">  
  147.         I'm a div,I can show and fixed in center!  
  148.     </div>  
  149.     <div style="clear: both;margin:80px;height:1000px;">  
  150.         <br /><br />  
  151.         <a href="javascript:void(0)" onclick="show(event)">show div center</a>  
  152.     </div>  
  153.  */  
  154. coos.window.center = function(obj,event)   
  155. {   
  156.     var e = event || window.event;   
  157.     if(e)   
  158.     {   
  159.         obj.style.left = ((coos.window.width() - parseInt(obj.style.width,10))/2).toFixed() + "px";   
  160.         var objh = (parseInt(obj.style.height,10)/2).toFixed();   
  161.         var sh = parseInt(Math.max(document.body.scrollTop,document.documentElement.scrollTop),10);   
  162.         var wh = parseInt((coos.window.height()/2).toFixed(),10);   
  163.         var ch = sh + wh;   
  164.         obj.style.top  = (ch - objh) + "px";   
  165.     }   
  166.     else  
  167.     {   
  168.         obj.style.left = ((coos.window.width() - parseInt(obj.style.width,10))/2).toFixed() + "px";   
  169.         obj.style.top  = ((coos.window.height() - parseInt(obj.style.height,10))/2).toFixed() + "px";   
  170.     }   
  171. };   
  172.   
  173. /**  
  174.  * 获取屏幕中间显示距离顶部的高度  
  175.  */  
  176. coos.window.center.top = function(obj)   
  177. {   
  178.     return ((coos.window.height() - parseInt(obj.style.height,10))/2).toFixed();   
  179. };   
  180.   
  181. /**  
  182.  * 固顶元素在屏幕中显示,不随滚动条的变化而变化  
  183.  */  
  184. coos.window.fixed = function()   
  185. {   
  186.     coos.window.onscroll.add(coos.window.fixed.bind);   
  187. };   
  188.   
  189. /**  
  190.  * 绑定需要固顶高度的元素window.onscroll事件  
  191.  */  
  192. coos.window.fixed.bind = function()   
  193. {   
  194.     if(!coos.window.fixed.obj || !coos.window.fixed.top)   
  195.     {   
  196.         return;   
  197.     }   
  198.     var objs = coos.window.fixed.obj;   
  199.     var tops = coos.window.fixed.top;   
  200.     var len = objs.length;   
  201.     //ie6.0以下不支持position:fixed;属性   
  202.     if(coos.browser.msie && parseInt(coos.browser.version) <= 6)   
  203.     {   
  204.         for(var i = 0; i < len;i++)   
  205.         {   
  206.             var sh = parseInt(Math.max(document.body.scrollTop,document.documentElement.scrollTop),10);   
  207.             objs[i].style.top = (sh + tops[i]) + "px";   
  208.         }   
  209.     }   
  210.     else  
  211.     {   
  212.         for(var i = 0; i < len;i++)   
  213.         {   
  214.             objs[i].style.position = "fixed";   
  215.             objs[i].style.top = tops[i] + "px";   
  216.         }   
  217.         //设置完position:fixed;属性和top属性后移除onscroll事件   
  218.         coos.window.onscroll.remove(coos.window.fixed.bind);   
  219.     }   
  220. };   
  221.   
  222. /**  
  223.  * 设置需要固定高度的元素  
  224.  * @param obj 需要固定高度的元素对象  
  225.  * @param top 需要固定高度的元素距离顶部的高度  
  226.  */  
  227. coos.window.fixed.set = function(obj,top)   
  228. {   
  229.     if(!coos.window.fixed.obj)   
  230.     {   
  231.         coos.window.fixed.obj = new Array();   
  232.     }   
  233.     coos.window.fixed.obj.push(obj);   
  234.        
  235.     if(!coos.window.fixed.top)   
  236.     {   
  237.         coos.window.fixed.top = new Array();   
  238.     }   
  239.     top = parseInt(top,10);   
  240.     coos.window.fixed.top.push(top);   
  241. };  
if(!coos)var coos = function(){};
if(!coos.browser)
{
	coos.userAgent = navigator.userAgent.toLowerCase();
	coos.browser = {
		version: (coos.userAgent.match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [0,'0'])[1],
		safari: /webkit/.test(coos.userAgent),
		opera: /opera/.test(coos.userAgent),
		msie: /msie/.test(coos.userAgent) && !/opera/.test(coos.userAgent),
		mozilla: /mozilla/.test(coos.userAgent) && !/(compatible|webkit)/.test(coos.userAgent)
	};
}
coos.window = function(){};
coos.window.winWidth  = 0;
coos.window.winHeight = 0;

/**
 * 获取屏幕宽度的函数,在非xhtml标准页面下有可能有问题
 */
coos.window.width = function()
{
	if (window.innerWidth)//for Firefox
	{
		coos.window.winWidth = window.innerWidth;
	}
	else if((document.body) && (document.body.clientWidth))
	{
		coos.window.winWidth = document.body.clientWidth;
	}

	if (document.documentElement && document.documentElement.clientWidth)
	{
		coos.window.winWidth = document.documentElement.clientWidth;
	}
	return coos.window.winWidth;
};

/**
 * 获取屏幕高度的函数
 * html,body高度属性必须设值为height:100%否则在火狐浏览器下获取不到真实高度
 */
coos.window.height = function()
{
	if (window.innerHeight)//for Firefox
	{
		coos.window.winHeight = window.innerHeight;
	}
	else if((document.body) && (document.body.clientHeight))
	{
		coos.window.winHeight = document.body.clientHeight;
	}

	if (document.documentElement  && document.documentElement.clientHeight)
	{
		coos.window.winHeight = document.documentElement.clientHeight;
	}
	return coos.window.winHeight;
};

/**
 * 获取滚动条横向宽度
 */
coos.window.scrollWidth = function()
{
	return document.body.scrollWidth + "px";
};

/**
 * 获取滚动条竖向高度,取body.scrollHeight和documentElement.scrollHeight中最高的一个
 */
coos.window.scrollHeight = function()
{
	return Math.max(document.body.scrollHeight,document.documentElement.scrollHeight) + "px";
};

coos.window.onscroll = function(){};

/**
 * window.onscroll绑定事件
 * @param fn 需要绑定的function
 */
coos.window.onscroll.add = function(fn)
{
	if (window.addEventListener) 
	{
		window.addEventListener("scroll",fn,false);
	}
	else
	{
		window.attachEvent("onscroll", fn);
	}
};

/**
 * 删除window.onscroll绑定事件
 * @param fn 需要绑定的function
 */
coos.window.onscroll.remove = function(fn)
{
	if (window.removeEventListener) 
	{
		window.addEventListener("scroll",fn,false);
	}
	else
	{
		window.detachEvent("onscroll", fn);
	}
};

/**
 * window.onload绑定事件
 * @param fn 需要绑定的function
 */
coos.window.onload = function(fn)
{
	if (window.addEventListener) 
	{
		window.addEventListener("load",fn,false);
	}
	else
	{
		window.attachEvent("onload", fn);
	}
};

/**
 * 让元素显示在屏幕中间,元素必须是绝对定位的
 * @param obj 要显示的对象,改变top left 属性值
 * @param event 触发的事件,在有滚动条的情况下必须传入事件以获取当时所在的滚动条高度
 * @example
<style type="text/css">
		html,body {margin: 0; padding: 0;height:100%;font-size: 14px;}
	  </style>
    <script type="text/javascript">  
	function show(event)
	{
		var obj = document.getElementById("showDiv");
		coos.window.center(obj,event);
		//元素在屏幕中间距离顶部的高度
		var top = coos.window.center.top(obj);
		//固顶在屏幕上,不随滚动条变化
		coos.window.fixed.set(obj,top);
		coos.window.fixed();
	}
    </script>
	<div id="showDiv" style="position:absolute;left:20px;top:5px;height:20px;width:400px;border:2px solid #ccc;text-align: center;clear: both;">
		I'm a div,I can show and fixed in center!
	</div>
	<div style="clear: both;margin:80px;height:1000px;">
		<br /><br />
		<a href="javascript:void(0)" onclick="show(event)">show div center</a>
	</div>
 */
coos.window.center = function(obj,event)
{
	var e = event || window.event;
	if(e)
	{
		obj.style.left = ((coos.window.width() - parseInt(obj.style.width,10))/2).toFixed() + "px";
		var objh = (parseInt(obj.style.height,10)/2).toFixed();
		var sh = parseInt(Math.max(document.body.scrollTop,document.documentElement.scrollTop),10);
		var wh = parseInt((coos.window.height()/2).toFixed(),10);
		var ch = sh + wh;
		obj.style.top  = (ch - objh) + "px";
	}
	else
	{
		obj.style.left = ((coos.window.width() - parseInt(obj.style.width,10))/2).toFixed() + "px";
		obj.style.top  = ((coos.window.height() - parseInt(obj.style.height,10))/2).toFixed() + "px";
	}
};

/**
 * 获取屏幕中间显示距离顶部的高度
 */
coos.window.center.top = function(obj)
{
	return ((coos.window.height() - parseInt(obj.style.height,10))/2).toFixed();
};

/**
 * 固顶元素在屏幕中显示,不随滚动条的变化而变化
 */
coos.window.fixed = function()
{
	coos.window.onscroll.add(coos.window.fixed.bind);
};

/**
 * 绑定需要固顶高度的元素window.onscroll事件
 */
coos.window.fixed.bind = function()
{
	if(!coos.window.fixed.obj || !coos.window.fixed.top)
	{
		return;
	}
	var objs = coos.window.fixed.obj;
	var tops = coos.window.fixed.top;
	var len = objs.length;
	//ie6.0以下不支持position:fixed;属性
	if(coos.browser.msie && parseInt(coos.browser.version) <= 6)
	{
		for(var i = 0; i < len;i++)
		{
			var sh = parseInt(Math.max(document.body.scrollTop,document.documentElement.scrollTop),10);
			objs[i].style.top = (sh + tops[i]) + "px";
		}
	}
	else
	{
		for(var i = 0; i < len;i++)
		{
			objs[i].style.position = "fixed";
			objs[i].style.top = tops[i] + "px";
		}
		//设置完position:fixed;属性和top属性后移除onscroll事件
		coos.window.onscroll.remove(coos.window.fixed.bind);
	}
};

/**
 * 设置需要固定高度的元素
 * @param obj 需要固定高度的元素对象
 * @param top 需要固定高度的元素距离顶部的高度
 */
coos.window.fixed.set = function(obj,top)
{
	if(!coos.window.fixed.obj)
	{
		coos.window.fixed.obj = new Array();
	}
	coos.window.fixed.obj.push(obj);
	
	if(!coos.window.fixed.top)
	{
		coos.window.fixed.top = new Array();
	}
	top = parseInt(top,10);
	coos.window.fixed.top.push(top);
};

 

 

Html代码 复制代码
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">     
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">     
  3. <head>     
  4.     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />     
  5.     <title>coos.extend.window Build Test Page</title>     
  6.     <script type="text/javascript" src="coos.extend.window.js"></script>    
  7. </head>     
  8.     <body>  
  9.     <style type="text/css">  
  10.         html,body {margin: 0; padding: 0;height:100%;font-size: 14px;}   
  11.       </style>  
  12.     <script type="text/javascript">     
  13.     function show(event)   
  14.     {   
  15.         var obj = document.getElementById("showDiv");   
  16.         coos.window.center(obj,event);   
  17.         //元素在屏幕中间距离顶部的高度   
  18.         var top = coos.window.center.top(obj);   
  19.         //固顶在屏幕上,不随滚动条变化   
  20.         coos.window.fixed.set(obj,top);   
  21.         coos.window.fixed();   
  22.     }   
  23.     </script>  
  24.     <div id="showDiv" style="position:absolute;left:20px;top:5px;height:20px;width:400px;border:2px solid #ccc;text-align: center;clear: both;">  
  25.         I'm a div,I can show and fixed in center!   
  26.     </div>  
  27.     <div style="clear: both;margin:80px;height:1000px;">  
  28.         <br /><br />  
  29.         <a href="javascript:void(0)" onclick="show(event)">show div center</a>  
  30.     </div>  
  31. </body>     
  32. </html>    
分享到:
评论

相关推荐

    发布一个实用的js window封装类

    标题中的“发布一个实用的js window封装类”指的是在JavaScript编程中,开发者为了提高代码的可维护性和复用性,通常会将一些常用的全局对象,如`window`,进行封装,形成一个自定义的类。这个类会包含`window`对象...

    封装js工具类

    根据提供的文件信息,我们可以看到这是一个用于封装JavaScript功能的C#类。下面将详细介绍该类中的各个方法及其用途。 ### 封装JS工具类 #### 1. Echo 方法 该方法的功能是向客户端输出指定的消息。 ```csharp ...

    通用不间断滚动JS封装类

    "通用不间断滚动JS封装类"是这个话题的核心,它涉及到利用JavaScript实现页面元素的无限滚动效果,并将其封装成一个可复用的类。下面我们将深入探讨这个知识点。 首先,我们要理解什么是不间断滚动,也称为无限滚动...

    Javascript:通用不间断滚动&省、市、地区联动选择JS封装类

    在这个“Javascript:通用不间断滚动&省、市、地区联动选择JS封装类”中,我们可以深入探讨两个核心功能:不间断滚动(通常称为无限滚动)和级联选择器(用于省、市、地区等多级联动选择)。 首先,无限滚动是网页...

    php封装js类,很好用的

    在给定的标题和描述中提到的"php封装js类",就是指创建一个PHP类来方便地生成和管理JavaScript代码。这种做法允许开发者在PHP中直接调用JavaScript函数,而无需在HTML模板中手动编写JavaScript。 首先,我们来看一...

    jkdrag网页层模块拖动插件,较多的JS封装类.rar

    里面有较多的JS封装类,比如数组类,可在数组中的每个项上运行一个函数,并将全部结果作为数组返回,也可在在数组中的每个项上运行一个函数,并将函数返回真值的项作为数组返回;浏览器兼容性测试类,包括检测js的...

    仿照jquery封装一个自己的js库(一)

    ### 仿照jQuery封装自己的JS库(一) #### 一、理解jQuery的美元符号 在JavaScript的世界里,jQuery 是一个非常流行的库,它通过简化HTML文档遍历、事件处理、动画以及Ajax交互等功能来帮助开发者更高效地编写网页...

    javascriptAPI教程及常用封装

    例如,你可以封装一个函数来处理日期和时间,或者创建一个工具类来处理字符串。在JavaScript中,我们可以使用函数、对象、类等结构进行封装。模块化工具,如CommonJS(在Node.js中使用)和ES6的import/export,...

    ios-一个简单的ObjC与JavaScript交互封装.zip

    本项目“ios-一个简单的ObjC与JavaScript交互封装”提供了一个简洁易用的解决方案,名为XBWebBridge,由GitHub用户changjianfeishui创建。这个库的目标是简化 ObjC 和 JavaScript 之间的通信,使得开发者可以方便地...

    JavaScript XML操作 封装类

    JavaScript XML操作封装类是用于处理XML数据的一种方法,它通过创建一个名为`XMLObject`的函数来实现。这个封装类的主要目标是简化在JavaScript中处理XML文档的过程,无论是从字符串中加载XML,还是从外部URL获取XML...

    常用JavaScript代码提示公共类封装

    在这个实例中,开发者将一些常用的JavaScript操作封装在一个名为`PublicJS`的类中,这个类是使用C#语言编写的,通常用于***框架。 `PublicJS`类包括以下静态方法: - `Alert`:这个方法用于显示一个包含给定描述...

    使用JavaScript实现一个本地文件选择器功能

    在JavaScript中实现一个本地文件选择器功能,是前端开发中常见的需求,这通常涉及到HTML5的File API。这个功能允许用户从他们的计算机上选择文件,并且可以进行预览、上传或者其他处理。以下将详细讲解如何实现这个...

    cefsharp JavaScript调用C#方法并返回参数

    CEFSharp是Chromium Embedded Framework(CEF)的.NET封装,而CEF是一个开源项目,用于在各种应用程序中嵌入基于Chromium的Web浏览器内核。CEFSharp提供了一套API,使得C#开发者能够方便地控制和扩展内置的浏览器...

    新手练习 Ajax请求封装进JavaScript类

    本文将深入探讨如何将Ajax请求封装进一个JavaScript类,同时关注超时处理、并发请求以及浏览器兼容性问题。 首先,我们来创建一个基础的Ajax类。这个类应该包含初始化方法、发送请求的方法以及处理响应的方法。以下...

    超实用的javascript代码

    原型链是JavaScript实现继承的方式,每个对象都有一个`__proto__`指向其构造函数的原型对象。 11. **ES6新特性**:ECMAScript 6(ES6)引入了类、箭头函数、模板字符串、解构赋值、let/const、Promise等新特性,极...

    JS样式封装

    2. **样式对象**:创建一个样式对象,存储所有相关的CSS属性,然后在需要时将其应用于元素。例如: ```javascript const styleObject = { color: 'red', fontSize: '16px', // ... }; element.style = style...

    自己封装弹出、跳转页面、关闭窗口的类vs2008

    标签“源码”和“工具”表明,这篇文章可能提供了实际的代码示例和一个可能的实用工具,使得读者可以直接将这个封装好的类应用于自己的项目中,节省编写重复代码的时间。 文件名“Jscript.cs”暗示这可能是C#的一个...

    javascript中类和继承(代码示例+prototype.js)

    一个函数可以看作是一个类的定义,通过`new`关键字来创建实例。函数的`prototype`属性则用于实现继承。例如: ```javascript function Person(name) { this.name = name; } Person.prototype.sayName = function...

    基于Vue封装的一些工具

    在IT行业中,Vue.js是一个非常流行的前端JavaScript框架,它以其易用性、可维护性和高性能而受到广大开发者喜爱。这个名为"基于Vue封装的一些工具"的项目,显然是一些专门为Vue.js应用程序设计的实用工具函数和指令...

Global site tag (gtag.js) - Google Analytics