window.js 主要包含了页面的一些操作

代码如下:

//处理页面异常
function Exception() {
}

//页面元素共同接口
function View() {
//页面元素
this.element = null;
//文字颜色
this.color = null;

//设置样式
this.setStyle = function(name, value) {
eval("this.element.style." + name + " = '" + value + "'");
}
//获取样式
this.getStyle = function(name) {
return eval("this.element.style." + name);
}

//设置浮动样式
this.setFloat = function(styleFloat) {
this.setStyle("styleFloat", styleFloat);
}
//设置背景色
this.setBackgroundColor = function(backgroundColor) {
this.setStyle("backgroundColor", backgroundColor);
}
//获取背景色
this.getBackgroundColor = function() {
return this.getStyle("backgroundColor");
}
//设置对象宽度
this.setWidth = function(width) {
//alert(width);
this.setStyle("width", width);
}
//设置对象宽度
this.setHeight = function(height) {
this.setStyle("height", height);
}
//设置页面定位
this.setPosition = function(position) {
this.setStyle("position", position);
}
//设置层
this.setZIndex = function(zIndex) {
this.setStyle("zIndex", zIndex);
}
//左边距离
this.setLeft = function(left) {
this.setStyle("left", left);
}
//上边距离
this.setTop = function(top) {
this.setStyle("top", top);
}
//是否换行
this.setWhiteSpace = function(whiteSpace) {
this.setStyle("whiteSpace", whiteSpace);
}
this.setMargin = function(margin) {
this.setStyle("margin", margin);
}
this.setPadding = function(padding) {
this.setStyle("padding", padding);
}

//设置属性
this.setAttributeIsHave = function(attrName, value) {
eval("this.element.setAttribute('" + attrName + "', '" + value + "')");
}
this.setId = function(id) {
this.setAttributeIsHave("id", id);
}
this.setInnerText = function(innertext) {
this.setAttributeIsHave("innerText", innertext);
}

//加入自定义属性
this.setAttributeIsNot = function(attrName, value) {
var attr = document.createAttribute(attrName);
attr.value = value;
this.element.setAttributeNode(attr);
}

//事件监听
this.eventListener = function(eventName, exec) {
this.element.attachEvent(eventName, exec);
}
//鼠标移入对象事件
this.onmouseenterListener = function(exec) {
this.eventListener("onmouseenter", exec);
}
//鼠标移出对象事件
this.onmouseleaveListener = function(exec) {
this.eventListener("onmouseleave", exec);
}
//鼠标单击对象事件
this.onclickListener = function(exec) {
this.eventListener("onclick", exec);
}
}

//单一元素
function Single() {
View.call(this);
}
//可以有子元素
function Multi() {
View.call(this);
//子元素集合
this.childElementList = new Array();
//加入子元素
this.addView = function(childElement) {
if(this.element == null) {
//待加入异常信息
return;
}
this.childElementList[this.childElementList.length] = childElement;
}
//关联子元素
this.appendChildElement = function(childElement) {
this.element.appendChild(childElement.element);
}
//显示元素
this.show = function() {
for(var i = 0; i < this.childElementList.length; i++) {
var childElement = this.childElementList[i];
this.appendChildElement(childElement);
childElement.show();
}
}
}
//面板
function Panel() {
Multi.call(this);
//创建页面元素
this.element = document.body;
}
//行布局
function LineLayout() {
Multi.call(this);
this.element = document.createElement("div");
}
//左布局
function LeftLayout() {
Multi.call(this);
this.element = document.createElement("div");
this.setFloat("left");
}
//右布局
function RightLayout() {
Multi.call(this);
this.element = document.createElement("div");
this.setFloat("right");
}
function Menu() {
Multi.call(this);
this.element = document.createElement("div");
this.setWidth("100%");
var clickListener = function() {
return;
};
var moveInBackgroundColor = "red";
var moveOutBackgroundColor = this.getBackgroundColor();
this.show = function() {
var menuItem = null;
var menuEntiy = null;
for(var i = 0; i < this.childElementList.length; i++) {
menuItem = new MenuItem();
menuEntiy = this.childElementList[i];
menuItem.addMenuEntity(menuEntiy);
menuItem.onmouseenterListener(moveInMenuItem);
menuItem.onmouseleaveListener(moveOutMenuItem);
menuItem.onclickListener(this.clickMenuItem );
menuItem.setPadding("0 5px 0 5px");
this.appendChildElement(menuItem);
}
}
this.setClickListener = function(exec) {
clickListener = exec;
}
function moveInMenuItem() {
event.srcElement.style.backgroundColor = moveInBackgroundColor;
}
function moveOutMenuItem() {
event.srcElement.style.backgroundColor = moveOutBackgroundColor;
}

this.clickMenuItem = function() {
var child = clickListener();
document.body.appendChild(child.element);
child.setLeft(event.srcElement.offsetLeft);
child.setTop(event.srcElement.offsetParent.offsetTop + event.srcElement.clientHeight);
child.show();
}
}
function ChildMenu() {
Multi.call(this);
this.element = document.createElement("div");
this.setPosition("absolute");
this.setZIndex(100);
this.setBackgroundColor("#ccffcc");
var moveInBackgroundColor = "red";
var moveOutBackgroundColor = this.getBackgroundColor();
this.show = function() {
var menuItem = null;
var menuEntiy = null;
for(var i = 0; i < this.childElementList.length; i++) {
menuItem = new MenuItem();
menuItem.setFloat("none");
menuEntiy = this.childElementList[i];
menuItem.addMenuEntity(menuEntiy);
menuItem.onmouseenterListener(moveInMenuItem);
menuItem.onmouseleaveListener(moveOutMenuItem);
//menuItem.onclickListener(clickMenuItem);
menuItem.setPadding("0 5px 0 15px");
this.appendChildElement(menuItem);
}
}
function moveInMenuItem() {
event.srcElement.style.backgroundColor = moveInBackgroundColor;
}
function moveOutMenuItem() {
event.srcElement.style.backgroundColor = moveOutBackgroundColor;
}
}

function MenuEntiy(id, name, action) {
this.id = id;
this.name = name ;
this.action = action;
}
function MenuItem() {
Single.call(this);
this.element = document.createElement("div");
this.setFloat("left");
this.setWhiteSpace("nowrap");
this.addMenuEntity = function(menuEntity) {
this.setId(menuEntity.id);
this.setInnerText(menuEntity.name);
this.setAttributeIsNot("action", menuEntity.action);
}
}

(0)

相关推荐

  • window.js 主要包含了页面的一些操作

    复制代码 代码如下: //处理页面异常 function Exception() { } //页面元素共同接口 function View() { //页面元素 this.element = null; //文字颜色 this.color = null; //设置样式 this.setStyle = function(name, value) { eval("this.element.style." + name + " = '" + value + "'

  • JS和JQUERY获取页面大小,滚动条位置,元素位置(示例代码)

    js与jquery获得页面大小.滚动条位置.元素位置 复制代码 代码如下: //页面位置及窗口大小 function GetPageSize() {var scrW, scrH; if(window.innerHeight && window.scrollMaxY) {    // Mozilla    scrW = window.innerWidth + window.scrollMaxX;    scrH = window.innerHeight + window.scrollMaxY

  • js实现整体缩放页面适配移动端

    大家在适配页面的Web端和移动端时候,如果不需要那么麻烦,就可以使用js进行整体缩放,只需要引入一个js,改动htmll头部代码即可 切记: 1.该 JS 应在 head 中尽可能早的引入,减少重绘. 2.定宽(视窗缩放): 对应 meta 标签写法 – 750 是效果图内容区域的宽度,一般为 640 或 750 html头部代码: <meta charset="UTF-8"> <meta name="viewport" content="

  • js开发中的页面、屏幕、浏览器的位置原理(高度宽度)说明讲解(附图)

    目录 一.介绍 1. 容器 2. 物理尺寸和分辨率 3. 展示图 二.屏幕信息 三.浏览器信息 四.页面信息 前端js开发中我们常遇到对页面.屏幕.浏览器宽高和位置的获取问题,有时间查到了js的实现代码,但是不知道为什么.本篇图文并茂讲解Web环境中屏幕.浏览器及页面的高度.宽度信息. 一.介绍 1. 容器 一个页面的展示,从外到内的容器为:屏幕.浏览器以及页面本身. HTML元素展现在页面内,页面展现在浏览器内,而浏览器展现在屏幕内. 通过Js的一些对象可以获取这些容器的高度.宽度. 2. 物

  • JS实现刷新父页面不弹出提示框的方法

    本文实例讲述了JS实现刷新父页面不弹出提示框的方法.分享给大家供大家参考,具体如下: A页面 open方式出 B页面 ,当B页面做了类如保存动作后,需要关闭B页面,刷新A页面的情况下,会弹出一个提示框,要求点重试,这个就是发生预料之外的情况,用户体验很差. 解决方案分两种情况: 1.A页面很简单的情况(没有frame/iframe) 在B页面中的function中: function close(){ window.opener.location.reload(); window.opener

  • JS SetInterval 代码实现页面轮询

    概念介绍 setInterval 是一个实现定时调用的函数,可按照指定的周期(以毫秒计)来调用函数或计算表达式.setInterval方法会不停地调用函数,直到 clearInterval 被调用或窗口被关闭. 由 setInterval 返回的ID值可用作 clearInterval 方法的参数. 提示: 1000 毫秒= 1 秒. flash用法(来自百度百科) setInterval 动作的作用是在播放动画的时,每隔一定时间就调用函数,方法或对象.可以使用本动作更新来自数据库的变量或更新时

  • js或jquery实现页面打印可局部打印

    js或jquery实现页面打印(局部打印) 1.js实现(可实现局部打印) 复制代码 代码如下: <html> <title>js打印</title> <head></head><body> <input id="btnPrint" type="button" value="打印" onclick="javascript:window.print();&quo

  • js实现iframe跨页面调用函数的方法

    本文实例讲述了js实现iframe跨页面调用函数的方法.分享给大家供大家参考.具体实现方法如下: 在项目中难免会遇到这样一个问题就是页面引入了IFrame并且需要父页面调用子页面函数或者子页面需要调用父页面函数.比如说:现在有两个页面parent.html和child.html.其中parent.html中含有IFrame并且IFrame指向child.html.现在需要在parent.html/child.html中调用child.html/parent.html的一个js方法. 具体的代码实

  • js离开或刷新页面检测(且兼容FF,IE,Chrome)

    复制代码 代码如下: <!DOCTYPE html><html><head><script>  function closeIt()  {    return "Any string value here forces a dialog box to \n" +          "appear before closing the window.";  }  window.onbeforeunload = close

  • JS通过Cookie判断页面是否为首次打开

    废话不多说了,直接给大家贴代码了,本文写的不好还请各位大侠见谅. JScript code: function Cookie(key,value) { this.key=key; if(value!=null) { this.value=escape(value); } this.expiresTime=null; this.domain=null; this.path="/"; this.secure=null; } Cookie.prototype.setValue=functio

随机推荐