fineui是帆软报表和BI产品线所使用的前端框架。
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/**
|
|
|
|
* 横向响应式布局
|
|
|
|
* Created by GUY on 2016/12/2.
|
|
|
|
*
|
|
|
|
* @class BI.ResponsiveInlineLayout
|
|
|
|
* @extends BI.InlineLayout
|
|
|
|
*/
|
|
|
|
BI.ResponsiveInlineLayout = BI.inherit(BI.InlineLayout, {
|
|
|
|
mounted: function () {
|
|
|
|
var self = this, o = this.options;
|
|
|
|
if (o.horizontalAlign !== BI.HorizontalAlign.Center){
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var defaultResize = function () {
|
|
|
|
if (o.scrollable !== true && o.scrollx !== true) {
|
|
|
|
var clientWidth = document.body.clientWidth;
|
|
|
|
if(self.element.width() > 2/3 * clientWidth){
|
|
|
|
if (clientWidth <= 768) {
|
|
|
|
BI.each(self._children, function (i, child) {
|
|
|
|
self._clearGap(child);
|
|
|
|
self._handleReverseGap(child, o.items[i], i | 0);
|
|
|
|
child.elemenet.css("display", "");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var resize = function () {
|
|
|
|
defaultResize();
|
|
|
|
if (o.scrollable !== true && o.scrollx !== true) {
|
|
|
|
var clientWidth = document.body.clientWidth;
|
|
|
|
if(self.element.width() > 2/3 * clientWidth){
|
|
|
|
if (clientWidth > 768) {
|
|
|
|
BI.each(self._children, function (i, child) {
|
|
|
|
self._clearGap(child);
|
|
|
|
})
|
|
|
|
self.resize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.unResize = BI.Resizers.add(this.getName(), resize);
|
|
|
|
defaultResize();
|
|
|
|
},
|
|
|
|
|
|
|
|
destroyed: function () {
|
|
|
|
this.unResize();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
BI.shortcut("bi.responsive_inline", BI.ResponsiveInlineLayout);
|