var _____WB$wombat$assign$function_____ = function(name) {return (self._wb_wombat && self._wb_wombat.local_init && self._wb_wombat.local_init(name)) || self[name]; }; if (!self.__WB_pmw) { self.__WB_pmw = function(obj) { this.__WB_source = obj; return this; } } { let window = _____WB$wombat$assign$function_____("window"); let self = _____WB$wombat$assign$function_____("self"); let document = _____WB$wombat$assign$function_____("document"); let location = _____WB$wombat$assign$function_____("location"); let top = _____WB$wombat$assign$function_____("top"); let parent = _____WB$wombat$assign$function_____("parent"); let frames = _____WB$wombat$assign$function_____("frames"); let opener = _____WB$wombat$assign$function_____("opener"); ; !function () { var layout = { v: "2.2" }; var obj = function (selector) { this.selector = $(selector); }; obj.prototype.layout = function () { var _obj = this; if (_obj.selector[0].tagName == 'STYLE' || _obj.selector[0].tagName == 'SCRIPT') { return; } var containerWidth = this.selector.outerWidth(); var containerHeight = this.selector.outerHeight(); _obj.selector.addClass('kui-layout'); if (_obj.selector.css('position')=='static') { _obj.selector.css('position', 'absolute'); } $.each(this.selector.children(), function (i, o) { if (o.tagName == 'STYLE' || o.tagName == 'SCRIPT') { return; } $(o).css('position','absolute'); }) $.each(this.selector.children(), function (i, o) { if (o.tagName == 'STYLE' || o.tagName == 'SCRIPT') { return; } var leftAttr = $(o).attr('left'); var centerAttr = $(o).attr('center'); var rightAttr = $(o).attr('right'); var topAttr = $(o).attr('top'); var middleAttr = $(o).attr('middle'); var bottomAttr = $(o).attr('bottom'); //left、top、right、bottom微调值. var leftAdd = 0; var topAdd = 0; var rightAdd = 0; var bottomAdd = 0; var centerAdd = 0; var middleAdd = 0; var leftAddAttr = $(o).attr('leftAdd'); var topAddAttr = $(o).attr('topAdd'); var rightAddAttr = $(o).attr('rightAdd'); var bottomAddAttr = $(o).attr('bottomAdd'); var centerAddAttr = $(o).attr('centerAdd'); var middleAddAttr = $(o).attr('middleAdd'); if (leftAddAttr) { leftAdd = parseInt(leftAddAttr, 10); } if (topAddAttr) { topAdd = parseInt(topAddAttr, 10); } if (rightAddAttr) { rightAdd = parseInt(rightAddAttr, 10); } if (bottomAddAttr) { bottomAdd = parseInt(bottomAddAttr, 10); } if (centerAddAttr) { centerAdd = parseInt(centerAddAttr, 10); } if (middleAddAttr) { middleAdd = parseInt(middleAddAttr, 10); } //横向定义4种情况:仅定义left、仅定义center、仅定义right、同时定义left和right. //纵向定义与横向定义类似. var left = 0; var top = 0; var width = $(o).outerWidth(); var height = $(o).outerHeight(); //left if (leftAttr == ':left') { left = 0; } else if (leftAttr == ':center') { left = containerWidth / 2; } else if(leftAttr==':right') { left = containerWidth; } else if (leftAttr&&leftAttr.indexOf(':')>0) { var arr = leftAttr.split(':'); var arr0 = arr[0]; var arr1 = arr[1]; if (arr1 == 'left') { left = $(arr0).position().left; } else if (arr1 == 'center') { left = $(arr0).position().left + $(arr0).outerWidth() / 2; } else if (arr1 == 'right') { left = $(arr0).position().left + $(arr0).outerWidth(); } } left += leftAdd; //right if (!leftAttr) { if (rightAttr == ':left') { left = 0 - $(o).outerWidth(); } else if (rightAttr == ':center') { left = containerWidth / 2 - $(o).outerWidth(); } else if (rightAttr == ':right') { left = containerWidth - $(o).outerWidth(); } else if (rightAttr && rightAttr.indexOf(':') > 0) { var arr = rightAttr.split(':'); var arr0 = arr[0]; var arr1 = arr[1]; if (arr1 == 'left') { left = $(arr0).position().left-$(o).outerWidth(); } else if (arr1 == 'center') { left = $(arr0).position().left + $(arr0).outerWidth() / 2 - $(o).outerWidth(); } else if (arr1 == 'right') { left = $(arr0).position().left + $(arr0).outerWidth() - $(o).outerWidth(); } } left += rightAdd; } else { if (rightAttr == ':left') { width = 0 - left; } else if (rightAttr == ':center') { width = containerWidth / 2 - left; } else if (rightAttr == ':right') { width = containerWidth - left; } else if (rightAttr && rightAttr.indexOf(':') > 0) { var arr = rightAttr.split(':'); var arr0 = arr[0]; var arr1 = arr[1]; if (arr1 == 'left') { width = $(arr0).position().left - left; } else if (arr1 == 'center') { width = $(arr0).position().left + $(arr0).outerWidth() / 2 - left; } else if (arr1 == 'right') { width = $(arr0).position().left + $(arr0).outerWidth() - left; } } width += rightAdd; } //top if (topAttr == ':top') { top = 0; } else if (topAttr == ':middle') { top = containerHeight / 2; } else if (topAttr == ':bottom') { top = containerHeight; } else if (topAttr && topAttr.indexOf(':') > 0) { var arr = topAttr.split(':'); var arr0 = arr[0]; var arr1 = arr[1]; if (arr1 == 'top') { top = $(arr0).position().top; } else if (arr1 == 'middle') { top = $(arr0).position().top + $(arr0).outerHeight() / 2; } else if (arr1 == 'bottom') { top = $(arr0).position().top + $(arr0).outerHeight(); } } top += topAdd; //bottom if (!topAttr) { if (bottomAttr == ':top') { top = 0 - $(o).outerHeight(); } else if (bottomAttr == ':middle') { top = containerHeight / 2 - $(o).outerHeight(); } else if (bottomAttr == ':bottom') { top = containerHeight - $(o).outerHeight(); } else if (bottomAttr && bottomAttr.indexOf(':') > 0) { var arr = bottomAttr.split(':'); var arr0 = arr[0]; var arr1 = arr[1]; if (arr1 == 'top') { top = $(arr0).position().top - $(o).outerHeight(); } else if (arr1 == 'middle') { top = $(arr0).position().top + $(arr0).outerHeight() / 2 - $(o).outerHeight(); } else if (arr1 == 'bottom') { top = $(arr0).position().top + $(arr0).outerHeight() - $(o).outerHeight(); } } top += bottomAdd; } else { if (bottomAttr == ':top') { height = 0 - top; } else if (bottomAttr == ':middle') { height = containerHeight / 2 - top; } else if (bottomAttr == ':bottom') { height = containerHeight - top; } else if (bottomAttr && bottomAttr.indexOf(':') > 0) { var arr = bottomAttr.split(':'); var arr0 = arr[0]; var arr1 = arr[1]; if (arr1 == 'top') { height = $(arr0).position().top - top; } else if (arr1 == 'middle') { height = $(arr0).position().top + $(arr0).outerHeight() / 2 - top; } else if (arr1 == 'bottom') { height = $(arr0).position().top + $(arr0).outerHeight() - top; } } height += bottomAdd; } //center if (centerAttr == ':left') { left =0-$(o).outerWidth() / 2; } else if (centerAttr == ':center') { left = (containerWidth - $(o).outerWidth()) / 2; } else if (centerAttr == ':right') { left = containerWidth - $(o).outerWidth()/2; } else if (centerAttr && centerAttr.indexOf(':') > 0) { var arr = centerAttr.split(':'); var arr0 = arr[0]; var arr1 = arr[1]; if (arr1 == 'left') { left = $(arr0).position().left - $(o).outerWidth() / 2; } else if (arr1 == 'center') { left = $(arr0).position().left + $(arr0).outerWidth() / 2 - $(o).outerWidth() / 2; } else if (arr1 == 'right') { left = $(arr0).position().left + $(arr0).outerWidth() - $(o).outerWidth() / 2; } } left += centerAdd; //middle if (middleAttr == ':top') { top = 0 - $(o).outerHeight() / 2; } else if (middleAttr == ':middle') { top = (containerHeight - $(o).outerHeight()) / 2; } else if (middleAttr == ':bottom') { top = containerHeight - $(o).outerHeight() / 2; } else if (middleAttr && middleAttr.indexOf(':') > 0) { var arr = middleAttr.split(':'); var arr0 = arr[0]; var arr1 = arr[1]; if (arr1 == 'top') { top = $(arr0).position().top - $(o).outerHeight() / 2; } else if (arr1 == 'middle') { top = $(arr0).position().top + $(arr0).outerHeight() / 2 - $(o).outerHeight() / 2; } else if (arr1 == 'bottom') { top = $(arr0).position().top + $(arr0).outerHeight() - $(o).outerHeight() / 2; } } top += middleAdd; if (leftAttr || rightAttr || centerAttr) { $(o).css('left', left); //$(o).css('width', width);//width还需要减去border和padding. $(o).outerWidth(width); } if (topAttr || middleAttr || bottomAttr) { $(o).css('top', top); //$(o).css('height', height);//height还需要减去border和padding. $(o).outerHeight(height); } }) //自动调用split //$.each(_obj.selector.children('.kui-split'), function (i, o) { // if (o.isSplit == true) { // return;//split永远只调一次. // } // o.isSplit = true; // var direction = $(o).attr('split-direction'); // $(o).split(direction); //}); //layout嵌套. $.each(_obj.selector.find('.kui-layout'), function (i,o) { new obj(o).layout(); }) } layout.layout = function (selector) { var _obj = new obj(selector); $(window).resize(function () { _obj.layout(); }); _obj.layout(); }; window.layout = layout; //实现自动调用. $(function () { $.each($('body').find('.kui-layout'), function (i, o) { if ($(o).parent().hasClass('kui-layout')) { return; } window.layout.layout(o); }); //$.each($('body').find('.kui-layout-wh'), function (i, o) { // var wAttr = $(o).attr('kui-layout-w'); // var hAttr = $(o).attr('kui-layout-h'); // if (wAttr) { // $(window).resize(function () { // $(o).css('width', eval(wAttr)); // }); // $(o).css('width', eval(wAttr)); // } // if (hAttr) { // $(window).resize(function () { // $(o).css('height', eval(hAttr)); // }); // $(o).css('height', eval(hAttr)); // } //}); }); }(); }