可配置特殊布局 extraLayout

码农软件 · 软件分类 · 视图布局(View Layout) · 2019-06-22 08:59:19

软件介绍

extraLayout

show a special layout method

不像 jqueryui 的东南西北方式布局,该布局为采用一种可配置的布局方式,可以选择上下左右固定块,中间的结构采用百分比方式布局。

jQuery.extraLayout.defaults = {
        method : "row",  
        //横向布局或者纵向布局 可选参数为'row'、'column'        nums : 2,   
        //中间块的数量        widths : [   
        ],
         //横向布局,各个中间块所占的宽度        heights : [  
        ],
         //纵向布局,各个中间块所占的高度        leftBlock : false,    
        //横向布局,是否存在左边固定块        rightBlock : false,  
        //横向布局,是否存在右边固定块        topBlock : false,   
        //纵向布局,是否存在头部固定块        bottomBlock : false, 
        //纵向布局,是否存在底固定块        leftBlockWidth : 200, 
        //横向布局,左边固定块所占的宽度        rightBlockWidth : 200,
        //横向布局,左边固定块所占的宽度        topBlockHeight : 150, 
        //纵向布局,头部固定块所占的高度        bottomBlockHeight : 150,
        //纵向布局,底部固定块所占的高度        resize : true 
        //布局是否需要自动resize    };

本文地址:https://codercto.com/soft/d/8512.html

The Hard Thing About Hard Things

The Hard Thing About Hard Things

Ben Horowitz / HarperBusiness / 2014-3-4 / USD 29.99

Ben Horowitz, cofounder of Andreessen Horowitz and one of Silicon Valley's most respected and experienced entrepreneurs, offers essential advice on building and running a startup—practical wisdom for ......一起来看看 《The Hard Thing About Hard Things》 这本书的介绍吧!

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

URL 编码/解码
URL 编码/解码

URL 编码/解码

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具