- 浏览: 254081 次
- 性别:
- 来自: 深圳
文章分类
最新评论
-
wangyajin333:
太棒了。谢谢分享。
ajax提交编码转换问题 java.io.charConVersionException:EOF -
leon.s.kennedy:
security3.0 也是如此
spring Security 中角色名字必须满足ROLE_XXX的格式 -
CoderDream:
如果把工程源代码贴出了就更好了,可以不带jar档!
struts2中Spring Security 自定义登陆页面的实现 -
heyujunlikely:
String s = "/**** package ...
java 去除注释的正则表达式 -
hastenlife:
[i][/i][b][/b][u][/u]引用引用[url][ ...
struts2 Validator 整合freemarker 取得FieldError的方法
发布一个实用的js window封装类,主要内容包括:
1.获取屏幕宽度的函数
2.获取屏幕高度的函数
3.获取滚动条横向宽度
4.获取滚动条竖向高度
5.window.onscroll绑定事件
6.删除window.onscroll绑定事件
7.window.onload绑定事件
8.让元素显示在屏幕中间
9.获取屏幕中间显示距离顶部的高度
10.固顶元素在屏幕中显示,不随滚动条的变化而变化
- 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);
- };
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); };
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <title>coos.extend.window Build Test Page</title>
- <script type="text/javascript" src="coos.extend.window.js"></script>
- </head>
- <body>
- <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>
- </body>
- </html>
- coos_window_test.rar (2.8 KB)
- 下载次数: 14
发表评论
-
coos.$script 动态插入脚本并执行的方法
2010-08-23 16:59 1859/** * 动态插入脚本并执行 * ... -
终于完成coos的重构了
2010-02-07 18:01 1008考虑到大部分人不一定使用java或ssh开发,已经去掉ssh框 ... -
发布一个最新版coos核心代码
2009-08-10 10:49 2270发布一个最新版coos核心 ... -
ajax中post的escape扩展方法
2009-07-29 18:47 1489ajax中post的escape对有些特殊字符无法转换,例如: ... -
ajax中post的escape扩展方法
2009-07-24 14:09 1440ajax中post的escape对有些特殊字符无法转换,例如: ... -
发布一个实用的js window封装类
2009-07-23 19:02 1792发布一个实用的js window封装类,主要内容包括: 1. ... -
coos脚本库说明
2009-07-02 11:43 1363coos脚本库说明 coos(commo ...
相关推荐
标题中的“发布一个实用的js window封装类”指的是在JavaScript编程中,开发者为了提高代码的可维护性和复用性,通常会将一些常用的全局对象,如`window`,进行封装,形成一个自定义的类。这个类会包含`window`对象...
根据提供的文件信息,我们可以看到这是一个用于封装JavaScript功能的C#类。下面将详细介绍该类中的各个方法及其用途。 ### 封装JS工具类 #### 1. Echo 方法 该方法的功能是向客户端输出指定的消息。 ```csharp ...
"通用不间断滚动JS封装类"是这个话题的核心,它涉及到利用JavaScript实现页面元素的无限滚动效果,并将其封装成一个可复用的类。下面我们将深入探讨这个知识点。 首先,我们要理解什么是不间断滚动,也称为无限滚动...
在这个“Javascript:通用不间断滚动&省、市、地区联动选择JS封装类”中,我们可以深入探讨两个核心功能:不间断滚动(通常称为无限滚动)和级联选择器(用于省、市、地区等多级联动选择)。 首先,无限滚动是网页...
在给定的标题和描述中提到的"php封装js类",就是指创建一个PHP类来方便地生成和管理JavaScript代码。这种做法允许开发者在PHP中直接调用JavaScript函数,而无需在HTML模板中手动编写JavaScript。 首先,我们来看一...
里面有较多的JS封装类,比如数组类,可在数组中的每个项上运行一个函数,并将全部结果作为数组返回,也可在在数组中的每个项上运行一个函数,并将函数返回真值的项作为数组返回;浏览器兼容性测试类,包括检测js的...
### 仿照jQuery封装自己的JS库(一) #### 一、理解jQuery的美元符号 在JavaScript的世界里,jQuery 是一个非常流行的库,它通过简化HTML文档遍历、事件处理、动画以及Ajax交互等功能来帮助开发者更高效地编写网页...
例如,你可以封装一个函数来处理日期和时间,或者创建一个工具类来处理字符串。在JavaScript中,我们可以使用函数、对象、类等结构进行封装。模块化工具,如CommonJS(在Node.js中使用)和ES6的import/export,...
本项目“ios-一个简单的ObjC与JavaScript交互封装”提供了一个简洁易用的解决方案,名为XBWebBridge,由GitHub用户changjianfeishui创建。这个库的目标是简化 ObjC 和 JavaScript 之间的通信,使得开发者可以方便地...
JavaScript XML操作封装类是用于处理XML数据的一种方法,它通过创建一个名为`XMLObject`的函数来实现。这个封装类的主要目标是简化在JavaScript中处理XML文档的过程,无论是从字符串中加载XML,还是从外部URL获取XML...
在这个实例中,开发者将一些常用的JavaScript操作封装在一个名为`PublicJS`的类中,这个类是使用C#语言编写的,通常用于***框架。 `PublicJS`类包括以下静态方法: - `Alert`:这个方法用于显示一个包含给定描述...
在JavaScript中实现一个本地文件选择器功能,是前端开发中常见的需求,这通常涉及到HTML5的File API。这个功能允许用户从他们的计算机上选择文件,并且可以进行预览、上传或者其他处理。以下将详细讲解如何实现这个...
CEFSharp是Chromium Embedded Framework(CEF)的.NET封装,而CEF是一个开源项目,用于在各种应用程序中嵌入基于Chromium的Web浏览器内核。CEFSharp提供了一套API,使得C#开发者能够方便地控制和扩展内置的浏览器...
本文将深入探讨如何将Ajax请求封装进一个JavaScript类,同时关注超时处理、并发请求以及浏览器兼容性问题。 首先,我们来创建一个基础的Ajax类。这个类应该包含初始化方法、发送请求的方法以及处理响应的方法。以下...
原型链是JavaScript实现继承的方式,每个对象都有一个`__proto__`指向其构造函数的原型对象。 11. **ES6新特性**:ECMAScript 6(ES6)引入了类、箭头函数、模板字符串、解构赋值、let/const、Promise等新特性,极...
2. **样式对象**:创建一个样式对象,存储所有相关的CSS属性,然后在需要时将其应用于元素。例如: ```javascript const styleObject = { color: 'red', fontSize: '16px', // ... }; element.style = style...
标签“源码”和“工具”表明,这篇文章可能提供了实际的代码示例和一个可能的实用工具,使得读者可以直接将这个封装好的类应用于自己的项目中,节省编写重复代码的时间。 文件名“Jscript.cs”暗示这可能是C#的一个...
一个函数可以看作是一个类的定义,通过`new`关键字来创建实例。函数的`prototype`属性则用于实现继承。例如: ```javascript function Person(name) { this.name = name; } Person.prototype.sayName = function...
在IT行业中,Vue.js是一个非常流行的前端JavaScript框架,它以其易用性、可维护性和高性能而受到广大开发者喜爱。这个名为"基于Vue封装的一些工具"的项目,显然是一些专门为Vue.js应用程序设计的实用工具函数和指令...