发布一个实用的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);
};
<!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>
分享到:
相关推荐
在IT行业中,ES3通常指的是ECMAScript第三版,这是JavaScript语言的一个标准版本。JavaScript是一种广泛用于网页和网络应用的编程语言,它负责处理客户端的交互、动态内容以及数据通信等任务。ECMAScript第三版(ES3...
9. **Node.js**:JavaScript也可以用于服务器端编程,Node.js提供了一个运行时环境,使得开发者可以用JavaScript处理I/O密集型任务,构建高效、可扩展的网络应用。 10. **框架和库**:在JavaScript社区,有许多流行...
2. **发展历程**:从1995年首次发布至今,JavaScript经历了多个版本的迭代和发展,包括ES6(ECMAScript 2015)、ES7、ES8等标准的更新,引入了诸如箭头函数、模块化支持、类等新特性。 3. **应用领域**:除了传统的...
本文将深入探讨如何从头开始封装、开发并发布一个Vue插件,以一个微博表情(Weibo Emoji)插件为例,详细介绍整个过程。 首先,我们需要了解Vue插件的分类。Vue插件可以分为以下几类: 1. **添加全局方法或属性**...
JavaScript中的对象是一种复合数据类型,它将数据和操作数据的方法封装在一起。全局对象Window是所有全局方法的拥有者,它的方法可以直接调用。Math对象封装了与数学计算相关的函数,而Array对象则提供了处理数组的...
-修正了IE下Grid中的一个JS问题(feedback:lqm4108)。 -修正Alert消息中引号未编码导致的JS错误(feedback:sun1299shine)。 +集成extjs3.0.3。 -修正弹出对话框的宽度计算错误(会保持最小的状态)。 -增加新的...
- 为了保持代码清晰,可以将计时器功能封装在一个单独的函数或类中,避免全局变量污染。 - 使用ES6的类语法可以创建更面向对象的计时器组件。 7. **性能优化**: - 为了避免不必要的DOM操作,可以使用`...
1. 较上一版本,增加一个frameset模块,是基于 iejoyswebos桌面的程序框架模块,可以用它来做桌面程序集合应用,它也是动态加载所集合模块JS包和CSS包,并且与桌面加载不冲突,它所加载的功能是以tabpanel的模式...
闭包是JavaScript中的一个高级概念,它可以访问其父作用域的变量,即使在其父函数已经执行完毕后。闭包在模块化、私有变量、记忆化等方面有重要应用。 6. **异步编程** 异步编程是JavaScript的一大特色,常见的有...
-修正了IE下Grid中的一个JS问题(feedback:lqm4108)。 -修正Alert消息中引号未编码导致的JS错误(feedback:sun1299shine)。 +集成extjs3.0.3。 -修正弹出对话框的宽度计算错误(会保持最小的状态)。 -增加新的...
- **例子**:在AS3中,你可以创建一个函数如`callFromJS()`,然后在JavaScript中通过`window['flashObject'].callFromJS()`来调用它。 2. **在Flash中读取图片**: - **加载图片**:AS3提供了`Loader`类用于加载...
它诞生于1995年,由网景公司的Brendan Eich所创造,最初被命名为Mocha,后改为LiveScript,最终在Netscape Navigator浏览器中以JavaScript的名义发布。JavaScript与Java虽然名字相似,但两者实际上并无太多关联,...
这里我整理了Android端会用到代码,包含JS通信,文件处理工具类,闪屏辅助类和WebView的封装。由于源码并没有完善,所以暂时没有发布到Maven仓库 用法 JS通信 需要把library中assets文件夹下的DeviceBridge.js放入...
1. JavaScript事件处理:了解JavaScript中的Window对象、document对象、location对象等,尤其是form对象及其事件处理。 除了服务器端和客户端编程语言,数据库知识也是构建动态网站的基础: 1. SQL语句:熟悉基本...
它基本上是一个封装类,包含编码为 SDNV 的基本节点缓冲区。 此外,它还为您提供实用函数来按需编码和解码缓冲区。什么是 SDNV? SDNVs是由创建和他们的目标是克服在网络协议的固定尺寸字段的常见问题和限制(例如...
`Ext.util.Observable`是`ext事件模型`中的另一个关键组件,它提供了一种机制来帮助开发者实现自定义类的事件发布/订阅功能。这不仅有助于增强类之间的解耦,还提高了程序的灵活性和可扩展性。 ##### 1. `Ext.util....